mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
Use set --no-event in the key binding functions
This is how we can use it in a backwards-compatible way. Eventually we would remove the compatibility guff.
This commit is contained in:
parent
f1e19884fb
commit
24836f9652
|
@ -10,15 +10,24 @@ function fish_default_key_bindings -d "emacs-like key binds"
|
||||||
bind --erase --all --preset # clear earlier bindings, if any
|
bind --erase --all --preset # clear earlier bindings, if any
|
||||||
if test "$fish_key_bindings" != fish_default_key_bindings
|
if test "$fish_key_bindings" != fish_default_key_bindings
|
||||||
# Allow the user to set the variable universally
|
# Allow the user to set the variable universally
|
||||||
|
set -l scope
|
||||||
set -q fish_key_bindings
|
set -q fish_key_bindings
|
||||||
or set -g fish_key_bindings
|
or set scope -g
|
||||||
# This triggers the handler, which calls us again and ensures the user_key_bindings
|
true
|
||||||
# are executed.
|
# We try to use `set --no-event`, but to avoid leaving the user without bindings
|
||||||
set fish_key_bindings fish_default_key_bindings
|
# if they run this with an older version we fall back on setting the variable
|
||||||
# unless the handler somehow doesn't exist, which would leave us without bindings.
|
# with an event.
|
||||||
# this happens in no-config mode.
|
if ! set --no-event $scope fish_key_bindings fish_default_key_bindings 2>/dev/null
|
||||||
functions -q __fish_reload_key_bindings
|
# This triggers the handler, which calls us again
|
||||||
and return
|
set $scope fish_key_bindings fish_default_key_bindings
|
||||||
|
# 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
|
||||||
|
else
|
||||||
|
# (we need to set the bind mode to default)
|
||||||
|
set --no-event fish_bind_mode default
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -23,16 +23,22 @@ function fish_vi_key_bindings --description 'vi-like key bindings for fish'
|
||||||
# and without this would then have subtly broken bindings.
|
# and without this would then have subtly broken bindings.
|
||||||
if test "$fish_key_bindings" != fish_vi_key_bindings
|
if test "$fish_key_bindings" != fish_vi_key_bindings
|
||||||
and test "$rebind" = true
|
and test "$rebind" = true
|
||||||
# Allow the user to set the variable universally.
|
# Allow the user to set the variable universally
|
||||||
|
set -l scope
|
||||||
set -q fish_key_bindings
|
set -q fish_key_bindings
|
||||||
or set -g fish_key_bindings
|
or set scope -g
|
||||||
# This triggers the handler, which calls us again and ensures the user_key_bindings
|
true
|
||||||
# are executed.
|
# We try to use `set --no-event`, but to avoid leaving the user without bindings
|
||||||
set fish_key_bindings fish_vi_key_bindings
|
# if they run this with an older version we fall back on setting the variable
|
||||||
# unless the handler somehow doesn't exist, which would leave us without bindings.
|
# with an event.
|
||||||
# this happens in no-config mode.
|
if ! set --no-event $scope fish_key_bindings fish_vi_key_bindings 2>/dev/null
|
||||||
functions -q __fish_reload_key_bindings
|
# This triggers the handler, which calls us again
|
||||||
and return
|
set $scope fish_key_bindings fish_vi_key_bindings
|
||||||
|
# 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
|
end
|
||||||
|
|
||||||
set -l init_mode insert
|
set -l init_mode insert
|
||||||
|
|
Loading…
Reference in New Issue
Block a user