m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 15:53:39 -05:00

Implement ttyname() in case /dev/tty is not available

Close #1266
Close #447
This commit is contained in:
Junegunn Choi
2018-04-25 17:50:47 +09:00
parent f57920ad90
commit 9e753a0d44
3 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
// +build windows
package tui
func ttyname() string {
return ""
}