diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2016-11-07 02:15:34 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2016-11-08 02:06:34 +0900 |
| commit | 898d8d94c858774b02668c1490068cf086a1f9f0 (patch) | |
| tree | 4229f5c2b63b228e8e1e2d1609c3ce587c819162 /src/util/util_unix.go | |
| parent | 26895da96918f9b1956a04981c8af5f3e42fcbd8 (diff) | |
| download | fzf-898d8d94c858774b02668c1490068cf086a1f9f0.tar.gz | |
Fix issues in tcell renderer and Windows build
- Fix display of CJK wide characters
- Fix horizontal offset of header lines
- Add support for keys with ALT modifier, shift-tab, page-up and down
- Fix util.ExecCommand to properly parse command-line arguments
- Fix redraw on resize
- Implement Pause/Resume for execute action
- Remove runtime check of GOOS
- Change exit status to 2 when tcell failed to start
- TBD: Travis CI build for tcell renderer
- Pending. tcell cannot reliably ingest keys from tmux send-keys
Diffstat (limited to 'src/util/util_unix.go')
| -rw-r--r-- | src/util/util_unix.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/util/util_unix.go b/src/util/util_unix.go index dcc5cb5e..29e0d30d 100644 --- a/src/util/util_unix.go +++ b/src/util/util_unix.go @@ -15,3 +15,8 @@ func ExecCommand(command string) *exec.Cmd { } return exec.Command(shell, "-c", command) } + +// IsWindows returns true on Windows +func IsWindows() bool { + return false +} |
