aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions
diff options
context:
space:
mode:
authorGravatar Federico Ferri <federico.ferri@cern.ch>2016-03-20 04:02:42 +0100
committerGravatar Kurtis Rader <krader@skepticism.us>2016-03-20 19:17:15 -0700
commit879ee61a30aa495456649e2b53714664264ff1bb (patch)
tree76136fc0f653fca2bd6f5d08ed11d36b34421ce0 /share/functions
parentc2f1df1d4af0c7e633528cb4c8caa79ef04b0b5a (diff)
fix w, e (with a trick to cope with big-words)
Diffstat (limited to 'share/functions')
-rw-r--r--share/functions/fish_vi_key_bindings.fish8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/functions/fish_vi_key_bindings.fish b/share/functions/fish_vi_key_bindings.fish
index 5debe616..10551832 100644
--- a/share/functions/fish_vi_key_bindings.fish
+++ b/share/functions/fish_vi_key_bindings.fish
@@ -79,10 +79,10 @@ function fish_vi_key_bindings --description 'vi-like key bindings for fish'
bind B backward-bigword
bind ge backward-word
bind gE backward-bigword
- bind w forward-word
- bind W forward-bigword
- bind e forward-word
- bind E forward-bigword
+ bind w forward-word forward-char
+ bind W forward-bigword forward-char
+ bind e forward-char forward-word backward-char
+ bind E forward-bigword backward-char
bind x delete-char
bind X backward-delete-char