zsh apt list 选项完成

zsh apt list 选项完成

我习惯在 bash 中使用制表符补全来apt list --upgradable输入apt ltab--utab,但我不能用 zsh 做同样的事情:当我按 时--u不会扩展。--upgradabletab

我在谷歌上搜索了一些建议安装 zsh-completions 并添加到 的解决方案setopt completealiases./zshrc但这些都没有帮助。

有什么办法可以让它像在 bash 中那样工作吗?

答案1

请按照此处的步骤获取其他功能: https://github.com/abhigenie92/zsh_to_fish

  1. 安装 oh-my-zsh

sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"

  1. 克隆必要的插件。

git clone git://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

  1. 将插件添加到~/.zshrcas

plugins = ( [plugins...] zsh-autosuggestions zsh-history-substring-search zsh-syntax-highlighting)注意:确保 zsh-syntax-highlighting 是上面列表中的最后一个。

  1. 修复背景主题问题(不一定取决于您的主题。)将以下行添加到您的~/.zshrc.

ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=white'

  1. 重启zsh

source ~/.zshrc

如果您喜欢这个答案,请考虑为 github 存储库加注星标。

答案2

这是一个老问题,但由于这也困扰着我,所以我看了一下。我无法从 apt 的 zsh 补全内容中找出头绪,并且尝试通过 bashcompinit 在 zsh 中使用 bash 补全也失败了。

不过,我很高兴地报告,这个问题已于 2020 年初发布的 zsh 5.8 版本中得到修复。该版本的 zsh 与 Ubuntu 20.04 LTS 捆绑在一起,并将出现在即将发布的 Debian 11 中。

提交实际上在这里:zsh commit 44614:apt list 选项完成

相关内容