mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 13:08:49 +00:00
Add missing $argv injection in fish_default_key_bindings.fish
These have to be present in all the default rules so that any errors can be silenced at startup (and so additional arguments can be passed in).
This commit is contained in:
parent
4ca31ae987
commit
b3ec069401
1 changed files with 3 additions and 3 deletions
|
@ -80,12 +80,12 @@ function fish_default_key_bindings -d "Default (Emacs-like) key bindings for fis
|
|||
bind $argv \e\< beginning-of-buffer
|
||||
bind $argv \e\> end-of-buffer
|
||||
|
||||
bind \ed kill-word
|
||||
bind $argv \ed kill-word
|
||||
|
||||
# Ignore some known-bad control sequences
|
||||
# https://github.com/fish-shell/fish-shell/issues/1917
|
||||
bind \e\[I 'begin;end'
|
||||
bind \e\[O 'begin;end'
|
||||
bind $argv \e\[I 'begin;end'
|
||||
bind $argv \e\[O 'begin;end'
|
||||
|
||||
# term-specific special bindings
|
||||
switch "$TERM"
|
||||
|
|
Loading…
Reference in a new issue