From 879ee61a30aa495456649e2b53714664264ff1bb Mon Sep 17 00:00:00 2001 From: Federico Ferri Date: Sun, 20 Mar 2016 04:02:42 +0100 Subject: [PATCH] fix w, e (with a trick to cope with big-words) --- share/functions/fish_vi_key_bindings.fish | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/share/functions/fish_vi_key_bindings.fish b/share/functions/fish_vi_key_bindings.fish index 5debe6166..10551832f 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