mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
fish_vi_key_bindings: Implement "d;" and "d," (#7516)
This commit is contained in:
parent
f396a43280
commit
2a86099cfd
1 changed files with 2 additions and 0 deletions
|
@ -166,6 +166,8 @@ function fish_vi_key_bindings --description 'vi-like key bindings for fish'
|
|||
bind -s --preset dl delete-char
|
||||
bind -s --preset di backward-jump-till and repeat-jump-reverse and begin-selection repeat-jump kill-selection end-selection
|
||||
bind -s --preset da backward-jump and repeat-jump-reverse and begin-selection repeat-jump kill-selection end-selection
|
||||
bind -s --preset 'd;' begin-selection repeat-jump kill-selection end-selection
|
||||
bind -s --preset 'd,' begin-selection repeat-jump-reverse kill-selection end-selection
|
||||
|
||||
bind -s --preset -m insert s delete-char repaint-mode
|
||||
bind -s --preset -m insert S kill-whole-line repaint-mode
|
||||
|
|
Loading…
Reference in a new issue