Browse Source

main: remove 'q' from global exit character list

Benton Edmondson 1 year ago
parent
commit
8a231b2239
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main.go

+ 1 - 1
main.go

@@ -58,7 +58,7 @@ func main() {
 		os.Stdin.Read(buffer)
 		input := buffer[0]
 
-		if input == 3 /*(ctrl+c)*/ || input == 'q' {
+		if input == 3 /*(ctrl+c)*/ {
 			printRaw("")
 			return
 		}