summary refs log tree commit diff stats
path: root/compiler/commands.nim
diff options
context:
space:
mode:
authorAdam Strzelecki <ono@java.pl>2015-06-24 19:50:51 +0200
committerAdam Strzelecki <ono@java.pl>2015-06-24 19:57:56 +0200
commit67fac7f1e7f40d49a985970e67a90dcfaf6ea433 (patch)
tree20a4b73c4eaa51e40b518a4097b8c8a94b4c911b /compiler/commands.nim
parent5ee4b1bf2dc335e8830e2bae50268d39ba8e686b (diff)
downloadNim-67fac7f1e7f40d49a985970e67a90dcfaf6ea433.tar.gz
Change --useColors to --colors:on|off and add help
Since we introduced automatic colors on terminals (via isatty) there is no way
to turn it off, since (undocumented) --useColors just turns them on.

This replaces --useColors with --colors:on|off, so anyone who prefers
non-colored compiler messages may now turn it off now.
Diffstat (limited to 'compiler/commands.nim')
-rw-r--r--compiler/commands.nim4
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/commands.nim b/compiler/commands.nim
index 922cda3c6..e3d3bc432 100644
--- a/compiler/commands.nim
+++ b/compiler/commands.nim
@@ -537,9 +537,7 @@ proc processSwitch(switch, arg: string, pass: TCmdLinePass, info: TLineInfo) =
   of "genscript":
     expectNoArg(switch, arg, pass, info)
     incl(gGlobalOptions, optGenScript)
-  of "usecolors":
-    expectNoArg(switch, arg, pass, info)
-    incl(gGlobalOptions, optUseColors)
+  of "colors": processOnOffSwitchG({optUseColors}, arg, pass, info)
   of "lib":
     expectArg(switch, arg, pass, info)
     libpath = processPath(arg, notRelativeToProj=true)