mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 05:59:46 +08:00
Compare commits
No commits in common. "8581ecd462ab2714936398c54433ed1deddb2926" and "803e1a784cd520f101d126b47deea3297e6a82fc" have entirely different histories.
8581ecd462
...
803e1a784c
@ -15,7 +15,6 @@ autojump_paths=(
|
|||||||
/opt/homebrew/etc/profile.d/autojump.sh # macOS with Homebrew (default on M1 macs)
|
/opt/homebrew/etc/profile.d/autojump.sh # macOS with Homebrew (default on M1 macs)
|
||||||
/opt/pkg/share/autojump/autojump.zsh # macOS with pkgsrc
|
/opt/pkg/share/autojump/autojump.zsh # macOS with pkgsrc
|
||||||
/etc/profiles/per-user/$USER/etc/profile.d/autojump.sh # macOS Nix, Home Manager and flakes
|
/etc/profiles/per-user/$USER/etc/profile.d/autojump.sh # macOS Nix, Home Manager and flakes
|
||||||
/nix/var/nix/gcroots/current-system/sw/share/zsh/site-functions/autojump.zsh # macOS Nix, nix-darwin
|
|
||||||
)
|
)
|
||||||
|
|
||||||
for file in $autojump_paths; do
|
for file in $autojump_paths; do
|
||||||
|
|||||||
@ -1,10 +1,8 @@
|
|||||||
function fzf_setup_using_fzf() {
|
function fzf_setup_using_fzf() {
|
||||||
(( ${+commands[fzf]} )) || return 1
|
(( ${+commands[fzf]} )) || return 1
|
||||||
|
|
||||||
# we remove "fzf " prefix, this fixes really old fzf versions behaviour
|
local fzf_ver=${$(fzf --version)[1]}
|
||||||
# see https://github.com/ohmyzsh/ohmyzsh/issues/12387
|
is-at-least 0.48.0 $fzf_ver || return 1
|
||||||
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 New Issue
Block a user