mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
parent
5e0f9521a5
commit
d2f5daf8e8
2 changed files with 8 additions and 2 deletions
|
@ -14,7 +14,10 @@ function fish_default_key_bindings -d "emacs-like key binds"
|
|||
# This triggers the handler, which calls us again and ensures the user_key_bindings
|
||||
# are executed.
|
||||
set fish_key_bindings fish_default_key_bindings
|
||||
return
|
||||
# unless the handler somehow doesn't exist, which would leave us without bindings.
|
||||
# this happens in no-config mode.
|
||||
functions -q __fish_reload_key_bindings
|
||||
and return
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -28,7 +28,10 @@ function fish_vi_key_bindings --description 'vi-like key bindings for fish'
|
|||
# This triggers the handler, which calls us again and ensures the user_key_bindings
|
||||
# are executed.
|
||||
set fish_key_bindings fish_vi_key_bindings
|
||||
return
|
||||
# unless the handler somehow doesn't exist, which would leave us without bindings.
|
||||
# this happens in no-config mode.
|
||||
functions -q __fish_reload_key_bindings
|
||||
and return
|
||||
end
|
||||
|
||||
set -l init_mode insert
|
||||
|
|
Loading…
Reference in a new issue