mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
parent
803e1a784c
commit
21963f4f67
1 changed files with 4 additions and 2 deletions
|
@ -1,8 +1,10 @@
|
||||||
function fzf_setup_using_fzf() {
|
function fzf_setup_using_fzf() {
|
||||||
(( ${+commands[fzf]} )) || return 1
|
(( ${+commands[fzf]} )) || return 1
|
||||||
|
|
||||||
local fzf_ver=${$(fzf --version)[1]}
|
# we remove "fzf " prefix, this fixes really old fzf versions behaviour
|
||||||
is-at-least 0.48.0 $fzf_ver || return 1
|
# see https://github.com/ohmyzsh/ohmyzsh/issues/12387
|
||||||
|
local fzf_ver=${"$(fzf --version)"#fzf }
|
||||||
|
is-at-least 0.48.0 ${${(s: :)fzf_ver}[1]} || return 1
|
||||||
|
|
||||||
eval "$(fzf --zsh)"
|
eval "$(fzf --zsh)"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue