vi: Make \cf do forward-word again in insert mode

This commit is contained in:
Fabian Homborg 2015-10-14 18:34:58 +02:00
parent 4e5e04bfda
commit 35bbc1d7b7

View file

@ -161,8 +161,10 @@ function fish_vi_key_bindings --description 'vi-like key bindings for fish'
bind P backward-char yank
bind gp yank-pop
### Overrides
# This is complete in vim
bind \cx end-of-line
bind -M insert \cf forward-word
bind '"*p' "commandline -i ( xsel -p; echo )[1]"
bind '"*P' backward-char "commandline -i ( xsel -p; echo )[1]"