是否可以在提示中格式化我的 git 分支名称的部分颜色?
Is it possible to format the colour of parts of my git branch name inside the prompt?
在我的 .zshrc
文件中,我有以下几行解析我当前的 git 分支并将其显示在终端中,.zshrc
文件如下所示:
# Load version control information
autoload -Uz vcs_info
precmd() { vcs_info }
# Set up the prompt (with git branch name)
setopt PROMPT_SUBST
PROMPT='%n in ${PWD/#$HOME/~} ${vcs_info_msg_0_} > '
# Format the vcs_info_msg_0_ variable
zstyle ':vcs_info:git:*' formats '(%b)'
所以我的终端最终看起来像这样:
me in ~/repos/myrepo (feat/MYISSUE-123/fix-the-broken-stuff) >
我想修改上面的脚本,使 MYISSUE-123
的颜色与分支名称的其余部分不同。
我该怎么做?
试试这个...将 precmd 更改为:
precmd() {
vcs_info
psvar=(${(s:/:)vcs_info_msg_0_})
# in case there are more than three components:
psvar[3]=${(j:/:)psvar[3,-1]}
}
确保在每次显示提示之前调用 precmd()
,方法是将其添加到挂钩中:
autoload -Uz add-zsh-hook
add-zsh-hook precmd precmd
并将 PROMPT 更改为:
PROMPT='%n in ${PWD/#$HOME/~} %1v/%F{red}%2v%f/%3v > '
这个回答中有一些关于psvar
的注释:。
(s)
和 (j)
参数扩展标志记录在 zshexpn
手册页中。
如果有任何问题,请告诉我。
在我的 .zshrc
文件中,我有以下几行解析我当前的 git 分支并将其显示在终端中,.zshrc
文件如下所示:
# Load version control information
autoload -Uz vcs_info
precmd() { vcs_info }
# Set up the prompt (with git branch name)
setopt PROMPT_SUBST
PROMPT='%n in ${PWD/#$HOME/~} ${vcs_info_msg_0_} > '
# Format the vcs_info_msg_0_ variable
zstyle ':vcs_info:git:*' formats '(%b)'
所以我的终端最终看起来像这样:
me in ~/repos/myrepo (feat/MYISSUE-123/fix-the-broken-stuff) >
我想修改上面的脚本,使 MYISSUE-123
的颜色与分支名称的其余部分不同。
我该怎么做?
试试这个...将 precmd 更改为:
precmd() {
vcs_info
psvar=(${(s:/:)vcs_info_msg_0_})
# in case there are more than three components:
psvar[3]=${(j:/:)psvar[3,-1]}
}
确保在每次显示提示之前调用 precmd()
,方法是将其添加到挂钩中:
autoload -Uz add-zsh-hook
add-zsh-hook precmd precmd
并将 PROMPT 更改为:
PROMPT='%n in ${PWD/#$HOME/~} %1v/%F{red}%2v%f/%3v > '
这个回答中有一些关于psvar
的注释:。
(s)
和 (j)
参数扩展标志记录在 zshexpn
手册页中。
如果有任何问题,请告诉我。