summaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2021-09-16 09:54:56 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2021-09-29 20:17:44 +0900
commit4173e94c6f260a64888928eead9aab8fd0bb1f97 (patch)
tree1cc5da5e15c3eae112031a35fcd2514a78381f41 /plugin
parent261d3d3340a9afa9925ec693a47ebe632d6870cb (diff)
Do not check for --height support on --version
https://github.com/junegunn/fzf.vim/issues/1329
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 d8295df2..4190e0e3 100644
--- a/plugin/fzf.vim
+++ b/plugin/fzf.vim
@@ -159,7 +159,7 @@ function s:get_version(bin)
if has_key(s:versions, a:bin)
return s:versions[a:bin]
end
- let command = a:bin . ' --version'
+ let command = a:bin . ' --version --no-height'
let output = systemlist(command)
if v:shell_error || empty(output)
return ''