mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-07 09:20:24 +00:00
20 lines
586 B
Fish
20 lines
586 B
Fish
function __fisher_key_bindings_enable -a plugin user_key_bindings
|
|
__fisher_key_bindings_update $plugin >> $fisher_binds
|
|
|
|
if test ! -s $user_key_bindings
|
|
command mkdir -p (dirname $user_key_bindings)
|
|
|
|
printf "%s\n" \
|
|
"function fish_user_key_bindings" \
|
|
" __fisher_key_bindings" \
|
|
"end" > $user_key_bindings
|
|
|
|
source $user_key_bindings
|
|
end
|
|
|
|
debug "Add fisherman key bindings '%s'" "$user_key_bindings"
|
|
|
|
functions fish_user_key_bindings \
|
|
| __fisher_key_bindings_update_user > $user_key_bindings
|
|
end
|