Correct vim-style autosuggest-accept binding.

Update the vim-style command line binding for Ctrl-E such that it
properly accepts autosuggestions (instead of doing nothing).
This commit is contained in:
braham 2016-04-08 20:43:55 -05:00
parent 4f19700919
commit 27e629b680

View file

@ -31,5 +31,5 @@ fi
if [[ -n "$key_info" ]]; then
# vi
bindkey -M viins "$key_info[Control]F" vi-forward-word
bindkey -M viins "$key_info[Control]E" vi-add-eol
bindkey -M viins "$key_info[Control]E" vi-end-of-line
fi