From 370e667e9161f9be7c19f3de47ee37513c86619e Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 29 Nov 2016 13:57:26 -0500 Subject: [PATCH] Remove debug statements --- cmd/micro/micro.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmd/micro/micro.go b/cmd/micro/micro.go index e7dc2ef5..3a441cee 100644 --- a/cmd/micro/micro.go +++ b/cmd/micro/micro.go @@ -105,7 +105,6 @@ func LoadInput() []*Buffer { } // If the file didn't exist, input will be empty, and we'll open an empty buffer buffers = append(buffers, NewBuffer(input, filename)) - fmt.Print("\a") } } else if !isatty.IsTerminal(os.Stdin.Fd()) { // Option 2 @@ -407,7 +406,6 @@ func main() { }() for { - fmt.Print("\a") // Display everything RedrawAll()