Remove call to ncurses set_tabsize()

Not available on old verions of ncurses
This commit is contained in:
Junegunn Choi 2015-01-08 11:04:25 +09:00
parent 23f27f3ce5
commit 3ed86445e1

View File

@ -179,7 +179,6 @@ func Init(color bool, color256 bool, black bool, mouse bool) {
C.cbreak()
C.noecho()
C.raw() // stty dsusp undef
C.set_tabsize(4) // FIXME
intChan := make(chan os.Signal, 1)
signal.Notify(intChan, os.Interrupt, os.Kill)