Zsh鱼式自我提示?

时间:2013-06-20 20:41:35

标签: zsh autosuggest

有没有办法在Zsh中执行type of auto-suggestion Fish does

2 个答案:

答案 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