【发布时间】:2021-09-03 23:58:37
【问题描述】:
我尝试为我的终端安装纯提示符,但我认为它不起作用。相反,每次我打开终端时,我都会在顶部看到这个:
Usage: prompt <options>
Options:
-c Show currently selected theme and parameters
-l List currently available prompt themes
-p [<themes>] Preview given themes (defaults to all)
-h [<theme>] Display help (for given theme)
-s <theme> Set and save theme
<theme> Switch to new theme immediately (changes not saved)
Use prompt -h <theme> for help on specific themes.
我认为这不应该出现是正确的吗?此外,当我查看所有主题时,pure 不存在。我应该如何解决这个问题?
我的 .zshrc 文件包含以下内容:
setopt AUTO_CD
# initialise nice autocompletion
autoload -U compinit && compinit
# do not autoselect the first completion entry
unsetopt MENU_COMPLETE
unsetopt FLOW_CONTROL
# show completion menu on successive tab press
setopt AUTO_MENU
setopt COMPLETE_IN_WORD
setopt ALWAYS_TO_END
# use a pretty menu to select options
zstyle ':completion:*:*:*:*:*' menu select
# initialize pure prompt
autoload -U promptinit; promptinit
prompt pure
【问题讨论】:
-
当您执行
prompt -l时,它是否在列出的主题中显示pure?
标签: command-line terminal zsh zshrc