|
|
hace 12 años | |
|---|---|---|
| .gitignore | hace 12 años | |
| LICENSE-MIT | hace 12 años | |
| README.mkd | hace 12 años | |
| autosuggestions.zsh | hace 12 años | |
Fish-like fast/unobtrusive autosuggestions for zsh. Shelr demo.
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