You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
Fish
45 lines
1.3 KiB
Fish
6 years ago
|
if test "$FZF_LEGACY_KEYBINDINGS" -eq 1
|
||
|
bind \ct '__fzf_find_file'
|
||
|
bind \cr '__fzf_reverse_isearch'
|
||
|
bind \ec '__fzf_cd'
|
||
|
bind \eC '__fzf_cd --hidden'
|
||
|
bind \cg '__fzf_open'
|
||
|
bind \co '__fzf_open --editor'
|
||
|
|
||
|
if bind -M insert >/dev/null 2>/dev/null
|
||
|
bind -M insert \ct '__fzf_find_file'
|
||
|
bind -M insert \cr '__fzf_reverse_isearch'
|
||
|
bind -M insert \ec '__fzf_cd'
|
||
|
bind -M insert \eC '__fzf_cd --hidden'
|
||
|
bind -M insert \cg '__fzf_open'
|
||
|
bind -M insert \co '__fzf_open --editor'
|
||
|
end
|
||
|
else
|
||
|
bind \cf '__fzf_find_file'
|
||
|
bind \cr '__fzf_reverse_isearch'
|
||
|
bind \eo '__fzf_cd'
|
||
|
bind \eO '__fzf_cd --hidden'
|
||
|
bind \cg '__fzf_open'
|
||
|
bind \co '__fzf_open --editor'
|
||
|
|
||
|
if bind -M insert >/dev/null 2>/dev/null
|
||
|
bind -M insert \cf '__fzf_find_file'
|
||
|
bind -M insert \cr '__fzf_reverse_isearch'
|
||
|
bind -M insert \eo '__fzf_cd'
|
||
|
bind -M insert \eO '__fzf_cd --hidden'
|
||
|
bind -M insert \cg '__fzf_open'
|
||
|
bind -M insert \co '__fzf_open --editor'
|
||
|
end
|
||
|
end
|
||
|
|
||
|
if set -q FZF_COMPLETE
|
||
|
bind \t '__fzf_complete'
|
||
|
end
|
||
|
|
||
|
function fzf_key_bindings_uninstall -e fzf_key_bindings_uninstall
|
||
|
set -l _bindings (bind -a | sed -En "s/(')?__fzf.*\$//p" | sed 's/bind/bind -e/')
|
||
|
for binding in $_bindings
|
||
|
eval $binding
|
||
|
end
|
||
|
end
|