在 Fish 中,当您开始输入时,自动完成功能会自动在该行本身上显示第一个自动完成的猜测。
在 zsh 中,您必须点击 Tab,它会显示下面的自动补全。在这方面有没有办法让 zsh 表现得更像鱼?
(我在用哦我的Zsh...)
答案1
我已经实施了一个zsh-自动建议插入。
它应该与zsh 历史子字符串搜索和zsh-语法高亮这是从鱼移植来的特征。
答案2
尝试:
autoload predict-on
predict-on
看:
info zsh --index-search=predict-on
了解详情。
答案3
请按照此处的步骤获取其他功能: https://github.com/abhigenie92/zsh_to_fish
- 安装 oh-my-zsh
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
- 克隆必要的插件。
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-history-substring-search ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-history-substring-search
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
- 将插件添加到
~/.zshrc
as
plugins = ( [plugins...] zsh-autosuggestions zsh-history-substring-search zsh-syntax-highlighting)
注意:确保zsh-syntax-highlighting
是上面列表中的最后一个。
- 修复背景主题问题(不一定取决于您的主题。)将以下行添加到您的
~/.zshrc
.
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=white'
- 重启zsh
source ~/.zshrc
如果您喜欢这个答案,请考虑为 github 存储库加注星标。