Browse Source

feat(fzf): support fzf setup for 0.48.0 and older (#12367)

Fixes #12355
Marc Cornellà 1 week ago
parent
commit
1b5503a3ee
1 changed files with 11 additions and 1 deletions
  1. 11 1
      plugins/fzf/fzf.plugin.zsh

+ 11 - 1
plugins/fzf/fzf.plugin.zsh

@@ -1,3 +1,12 @@
+function fzf_setup_using_fzf() {
+  (( ${+commands[fzf]} )) || return 1
+
+  local fzf_ver=${$(fzf --version)[1]}
+  is-at-least 0.48.0 $fzf_ver || return 1
+
+  eval "$(fzf --zsh)"
+}
+
 function fzf_setup_using_base_dir() {
   local fzf_base fzf_shell fzfdirs dir
 
@@ -217,7 +226,8 @@ Please add `export FZF_BASE=/path/to/fzf/install/dir` to your .zshrc
 EOF
 }
 
-fzf_setup_using_openbsd \
+fzf_setup_using_fzf \
+  || fzf_setup_using_openbsd \
   || fzf_setup_using_debian \
   || fzf_setup_using_opensuse \
   || fzf_setup_using_cygwin \