diff options
| -rw-r--r-- | main.go | 17 | 
1 files changed, 2 insertions, 15 deletions
| @@ -2,10 +2,6 @@  // build&run on save.  // You specify a build command and run command as flags and optionally you can filter by extension. -// TODO: -// fix bug when only build command is provided that the output is like this: -// [./build.sh [./build.sh] ./main.c ] -  package main  import ( @@ -22,17 +18,8 @@ import (  // Colors in escape sequences  var ( -	Reset    = "\033[0m" -	BoldCyan = "\033[36;1m" -	Cyan     = "\033[36m" -	// Red     = "\033[31m" -	// Green   = "\033[32m" -	// Yellow  = "\033[33m" -	// Blue = "\033[34m" -	// Magenta = "\033[35m" -	// Cyan = "\033[36m" -	// Gray    = "\033[37m" -	// White   = "\033[97m" +	Reset = "\033[0m" +	Cyan  = "\033[36m"  )  var ( | 
