mirror of
https://github.com/zsh-users/zsh-autosuggestions
synced 2024-12-18 01:14:46 +00:00
Fish-like autosuggestions for zsh
20c0ea841b
suggestion |
||
---|---|---|
.gitignore | ||
autosuggestions.zsh | ||
LICENSE-MIT | ||
README.mkd |
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+f to accept a suggested word
bindkey '^F' autosuggest-accept-suggested-word
EOF