Vi bindings: remove unused special input functions

These were only needed before the new approach from 38e633d49b
(fish_vi_key_bindings: add support for count, 2025-12-16).
This commit is contained in:
Johannes Altmanninger
2026-02-02 11:52:38 +11:00
parent 0ae3b33f2f
commit ac9c339e5a
6 changed files with 14 additions and 44 deletions

View File

@@ -154,12 +154,6 @@ The following special input functions are available:
``backward-kill-bigword``
move the whitespace-delimited word to the left of the cursor to the killring, until the start of the current word (like vim's ``dB``)
``backward-kill-word-end``
move from the cursor to the end of the previous word to the killring (like vim's ``dge``)
``backward-kill-bigword-end``
move from the cursor to the end of the previous whitespace-delimited word to the killring (like vim's ``dgE``)
``backward-path-component``
move one :ref:`path component <cmd-bind-backward-kill-path-component>` to the left
@@ -370,12 +364,6 @@ The following special input functions are available:
``kill-bigword-vi``
move the next whitespace-delimited word to the killring, stopping at the start of the next word (like vim's ``dW``)
``kill-bigword-end``
move from the cursor to the end of the current whitespace-delimited word to the killring (like vim's ``dE``)
``kill-word-end``
move from the cursor to the end of the current word to the killring (like vim's ``de``)
``kill-inner-word``
delete the word under the cursor (like vim's ``diw``)