You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as an example, --listFullPaths doesn't allow --listFullPaths:off; so it can't be undone if user has it in ~/.config/nim/nim.cfg
this would've allowed a simple fix for nim-lang/NimLime#118 where root cause was that --listFullPaths was not being supported
there are other examples like that.
proposal
every binary switch can be passed an on/off value, eg:
--listFullPaths # still allowed
--listFullPaths:on # same as --listFullPaths
--listFullPaths:off # unsets --listFullPaths
implementation: just use processOnOffSwitch
The text was updated successfully, but these errors were encountered:
as an example,
--listFullPaths
doesn't allow--listFullPaths:off
; so it can't beundone
if user has it in~/.config/nim/nim.cfg
this would've allowed a simple fix for nim-lang/NimLime#118 where root cause was that
--listFullPaths
was not being supportedthere are other examples like that.
proposal
every binary switch can be passed an on/off value, eg:
implementation: just use
processOnOffSwitch
The text was updated successfully, but these errors were encountered: