Fish-like autosuggestions for zsh
Find a file
2014-03-09 18:45:31 +01:00
lib fixed paths 2014-03-09 18:45:31 +01:00
.gitignore First commit 2013-10-26 13:05:17 -03:00
autosuggestions.zsh restructure to make it work with antigen 2014-03-09 16:44:52 +01:00
LICENSE-MIT First commit 2013-10-26 13:05:17 -03:00
README.mkd added files and docu for oh-my-zsh 2014-03-09 17:17:24 +01:00
zsh-autosuggestions.plugin.zsh Merge branch 'antigen' of github.com:bitcloud/zsh-autosuggestions into antigen 2014-03-09 17:34:07 +01:00

zsh-autosuggestions

Fish-like fast/unobtrusive autosuggestions for zsh. Shelr demo.

Installation

git clone git://github.com/tarruda/zsh-autosuggestions ~/.zsh-autosuggestions

cat >> ~/.zshrc << "EOF"
source ~/.zsh-autosuggestions/autosuggestions.zsh

# Enable autosuggestions automatically
zle-line-init() {
	zle autosuggest-start
}
zle -N zle-line-init

# use ctrl+t to toggle autosuggestions(hopefully this wont be needed as
# zsh-autosuggestions is designed to be unobtrusive)
bindkey '^T' autosuggest-toggle

Any widget that moves the cursor to the right(forward-word, forward-char...) will accept parts of the suggested text. For example, vi-mode users can do this:

# Accept suggestions without leaving insert mode
bindkey '^f' vi-forward-word
# or
bindkey '^f' vi-forward-blank-word

Emacs-mode users can simply use alt+f which is bound to forward-word

The zsh-history-substring-search plugin is also recommended.

With oh-my-zsh

  • Download the script or clone this repository in oh-my-zsh plugins directory:

      cd ~/.oh-my-zsh/custom/plugins
      git clone git://github.com/tarruda/zsh-autosuggestions.git
    
  • Activate the plugin in ~/.zshrc (in last position):

      plugins=( [plugins...] zsh-autosuggestions)
    
  • Source ~/.zshrc to take changes into account:

      source ~/.zshrc
    

Configuration

You may override default global config variables after plugin load.

  • AUTOSUGGESTION_HIGHLIGHT_COLOR: suggestion highlight color, default is 'fg=8'.
  • AUTOSUGGESTION_HIGHLIGHT_CURSOR: highlight word after cursor or not. Must be integer value 1 or 0, default is 1.