summaryrefslogtreecommitdiffstats
path: root/src/tui
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-06-03 19:47:53 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-06-03 19:47:53 +0900
commitca0b3b6fd7517aaedcb7517804e2040a8a7aad95 (patch)
tree611c006836b95a92f60abf054b3670630425b6a7 /src/tui
parentf4731c05142aed1881ced2178c71cbbce4bd1be4 (diff)
Fixes for Cygwin
- Update install script to download Windows binary if $TERM == cygwin - Unset TERM if $TERM == cygwin (#933) - Always use cmd.exe instead of $SHELL when running commands
Diffstat (limited to 'src/tui')
-rw-r--r--src/tui/tcell.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tui/tcell.go b/src/tui/tcell.go
index e66ed2f0..0c80de2b 100644
--- a/src/tui/tcell.go
+++ b/src/tui/tcell.go
@@ -3,6 +3,7 @@
package tui
import (
+ "os"
"time"
"unicode/utf8"
@@ -140,6 +141,9 @@ func (r *FullscreenRenderer) initScreen() {
}
func (r *FullscreenRenderer) Init() {
+ if os.Getenv("TERM") == "cygwin" {
+ os.Setenv("TERM", "")
+ }
encoding.Register()
r.initScreen()