We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b7b2bf commit 7571a2cCopy full SHA for 7571a2c
.oh-my-zsh/ctrl-branch/ctrl-branch.plugin.zsh
@@ -55,13 +55,21 @@ ctrl-branch-command() {
55
56
## show menu
57
# highlight shortcut letter inline in yellow
58
- # XXX preserve existing color after highlight
+ # preserve branch color after hotkey highlight
59
i=1
60
for m in $MENU; do
61
+ branch=$BRANCHES[$i]
62
+
63
+ # get active branch highlight color
64
+ ## strip active branch marker
65
+ m2=${m[3,-1]}
66
+ ## strip everything after branch name
67
+ active_color=${m2%%$branch*}
68
+ #printf "%q\n" $active_color
69
70
key=$HOTKEYS[$i]
- hot=$fg_bold[yellow]$key$reset_color
71
+ hot=$fg_bold[yellow]$key$reset_color$active_color
72
# replace key in branch name with highlight
- branch=$BRANCHES[$i]
73
hotbr=${branch/$key/$hot}
74
75
print ${m/$branch/$hotbr}
0 commit comments