diff options
Diffstat (limited to 'plugin')
| -rw-r--r-- | plugin/fzf.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/fzf.vim b/plugin/fzf.vim index fc7b196a..51ed1388 100644 --- a/plugin/fzf.vim +++ b/plugin/fzf.vim @@ -537,10 +537,10 @@ try let use_term = 0 endif if use_term - let optstr .= ' --no-height' + let optstr .= ' --no-height --no-tmux' elseif use_height let height = s:calc_size(&lines, dict.down, dict) - let optstr .= ' --height='.height + let optstr .= ' --no-tmux --height='.height endif " Respect --border option given in $FZF_DEFAULT_OPTS and 'options' let optstr = join([s:border_opt(get(dict, 'window', 0)), s:extract_option($FZF_DEFAULT_OPTS, 'border'), optstr]) |
