0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

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

Fixes #12355
This commit is contained in:
Marc Cornellà 2024-04-19 21:57:46 +02:00 committed by GitHub
parent d17ca487a4
commit 1b5503a3ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 \