删除 zsh 自动完成建议

Bar*_*app 6 zsh autocomplete prezto

当我打字时

cd l
Run Code Online (Sandbox Code Playgroud)

并点击选项卡,zsh 自动完成

cd lightdm/ 
Run Code Online (Sandbox Code Playgroud)

这不是我可用的目录(事实上我已经卸载了 lightdm)。

我该如何阻止这种情况发生?

我已经安装了 prezto。

https://github.com/sorin-ionescu/prezto

thr*_*rig 4

这可能是中记录的AUTO_NAME_DIRS和选项的组合。CDABLE_VARSzshoptions(1)

% PS1='%# ' zsh -f
% setopt AUTO_NAME_DIRS
% setopt CDABLE_VARS
% autoload -U compinit
% compinit
% cd a        # was mashing tab here to no avail (nor asdf)
cd: no such file or directory: a
% hash -d asdf=/etc
% cd asdf/    # "cd a" now tab completes
Run Code Online (Sandbox Code Playgroud)

(这是通过搜索zshoptions“dir”和“cd”相关字符串发现的。)

要关闭此功能,请禁用其中一个或多个选项 ( unsetopt) 或删除完成代码正在查找的变量。