有没有办法在Zsh中执行type of auto-suggestion Fish does?
答案 0 :(得分:25)
https://github.com/tarruda/zsh-autosuggestions完全符合我的要求。如果你想在zsh中使用鱼式自动预测,请使用它。
答案 1 :(得分:16)
Zsh 预测,运行下面的命令,然后点击Ctrl-X 1
或只需输入predict-on
即可试用
#-*-shell-script-*-
autoload predict-on
autoload predict-off
# you may also wish to bind it to some keys...
zle -N predict-on
zle -N predict-off
bindkey '^X1' predict-on
bindkey '^X2' predict-off