| Age | Commit message (Collapse) | Author |
|
Fix #4242.
Use --no-tty-default, if you want fzf to perform a TTY look-up instead of defaulting to /dev/tty.
|
|
Signed-off-by: piguagua <piguagua@aliyun.com>
|
|
# This will no longer cause 'Vim: Warning: Output is not to a terminal'
fzf --bind 'enter:execute:vim {}' > /tmp/foo
|
|
|
|
https://github.com/junegunn/fzf/issues/1360#issuecomment-788178140
# Redirect /dev/tty to suppress "Vim: Warning: Input is not from a terminal"
ls | fzf --bind "enter:execute(vim {} < /dev/tty)"
# With this change, we can omit "< /dev/tty" part
ls | fzf --bind "enter:execute(vim {})"
|
|
Close #1266
Close #447
|