From 77ef2e025972275a184278d906a3ee87f1906095 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Tue, 29 Oct 2013 14:32:51 -0300 Subject: [PATCH] Update instructions --- README.mkd | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.mkd b/README.mkd index b8ff39d..337a393 100644 --- a/README.mkd +++ b/README.mkd @@ -1,6 +1,6 @@ # zsh-autosuggestions -> [Fish](http://fishshell.com/)-like autosuggestions on top of zsh 'predict-on' widget. +> [Fish](http://fishshell.com/)-like fast/unobtrusive autosuggestions for zsh ## Installation @@ -10,12 +10,12 @@ cat >> ~/.zshrc << "EOF" source ~/.zsh-autosuggestions/autosuggestions.zsh # Enable autosuggestions automatically zle-line-init() { - enable-autosuggestions + zle autosuggest-start } zle -N zle-line-init -# use ctrl+t to toggle autosuggestions -bindkey '^T' toggle-autosuggestions +# use ctrl+t to toggle autosuggestions(hopefully this wont be needed) +bindkey '^T' autosuggest-toggle # use ctrl+f to accept a suggested word -bindkey '^F' accept-suggested-word +bindkey '^F' autosuggest-accept-suggested-word EOF ```