mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2025-04-06 17:21:51 +00:00
[vim] Native --tmux fix for Neovim
This commit is contained in:
parent
32eb32ee5e
commit
782de139c8
@ -592,7 +592,7 @@ function! s:fzf_tmux(dict)
|
|||||||
end
|
end
|
||||||
|
|
||||||
" Using native --tmux option
|
" 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)
|
return printf('%s --tmux %s%s', fzf#shellescape(fzf#exec()), size, in)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
@ -396,6 +396,7 @@ type Options struct {
|
|||||||
Output chan string
|
Output chan string
|
||||||
NoWinpty bool
|
NoWinpty bool
|
||||||
Tmux *tmuxOptions
|
Tmux *tmuxOptions
|
||||||
|
ForceTtyIn bool
|
||||||
ProxyScript string
|
ProxyScript string
|
||||||
Bash bool
|
Bash bool
|
||||||
Zsh bool
|
Zsh bool
|
||||||
@ -1949,6 +1950,12 @@ func parseOptions(opts *Options, allArgs []string) error {
|
|||||||
}
|
}
|
||||||
case "--no-tmux":
|
case "--no-tmux":
|
||||||
opts.Tmux = nil
|
opts.Tmux = nil
|
||||||
|
case "--force-tty-in":
|
||||||
|
// NOTE: We need this because `system('fzf --tmux < /dev/tty')` doesn't
|
||||||
|
// work on Neovim. Same as '-' option of fzf-tmux.
|
||||||
|
opts.ForceTtyIn = true
|
||||||
|
case "--no-force-tty-in":
|
||||||
|
opts.ForceTtyIn = false
|
||||||
case "--proxy-script":
|
case "--proxy-script":
|
||||||
if opts.ProxyScript, err = nextString(allArgs, &i, ""); err != nil {
|
if opts.ProxyScript, err = nextString(allArgs, &i, ""); err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -59,8 +59,8 @@ func runProxy(commandPrefix string, cmdBuilder func(temp string) *exec.Cmd, opts
|
|||||||
}()
|
}()
|
||||||
|
|
||||||
var command string
|
var command string
|
||||||
commandPrefix += ` --proxy-script "$0"`
|
commandPrefix += ` --no-force-tty-in --proxy-script "$0"`
|
||||||
if opts.Input == nil && util.IsTty(os.Stdin) {
|
if opts.Input == nil && (opts.ForceTtyIn || util.IsTty(os.Stdin)) {
|
||||||
command = fmt.Sprintf(`%s > %q`, commandPrefix, output)
|
command = fmt.Sprintf(`%s > %q`, commandPrefix, output)
|
||||||
} else {
|
} else {
|
||||||
input, err := fifo("proxy-input")
|
input, err := fifo("proxy-input")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user