summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/curses/curses.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/curses/curses.go b/src/curses/curses.go
index e4a65756..736ccf6b 100644
--- a/src/curses/curses.go
+++ b/src/curses/curses.go
@@ -178,8 +178,7 @@ func Init(color bool, color256 bool, black bool, mouse bool) {
}
C.cbreak()
C.noecho()
- C.raw() // stty dsusp undef
- C.set_tabsize(4) // FIXME
+ C.raw() // stty dsusp undef
intChan := make(chan os.Signal, 1)
signal.Notify(intChan, os.Interrupt, os.Kill)