summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2024-05-28 19:25:28 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2024-05-28 19:27:31 +0900
commit782de139c8edd8c3e77022ddf71648db1b344079 (patch)
tree03f32fc90d0215458ab1b51b47aa5c8e41308722 /plugin
parent32eb32ee5e80ab4e10ead9bc6db8c6ad59cf509d (diff)
downloadfzf-782de139c8edd8c3e77022ddf71648db1b344079.tar.gz
[vim] Native --tmux fix for Neovim
Diffstat (limited to 'plugin')
-rw-r--r--plugin/fzf.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/fzf.vim b/plugin/fzf.vim
index bd436e16..03969108 100644
--- a/plugin/fzf.vim
+++ b/plugin/fzf.vim
@@ -592,7 +592,7 @@ function! s:fzf_tmux(dict)
end
" Using native --tmux option
- let in = (has_key(a:dict, 'source') ? '' : ' < /dev/tty')
+ let in = (has_key(a:dict, 'source') ? '' : ' --force-tty-in')
return printf('%s --tmux %s%s', fzf#shellescape(fzf#exec()), size, in)
endfunction