diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-20 20:29:13 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-20 20:29:13 +0200 |
commit | 854c2b61a045b1f9804ed9c44da3ed10a2e3ec2f (patch) | |
tree | a1b9c1aa022a2bb1c27348c7da78a2af8a071bc7 /main.go | |
parent | 096397e51c1292b5e7247d5064236177d72ba9f4 (diff) |
cleanup
Diffstat (limited to 'main.go')
-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 ( |