Skip to content

Commit 7571a2c

Browse files
committed
ctrl-branch: Preserve branch color after hotkey highlight
1 parent 6b7b2bf commit 7571a2c

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.oh-my-zsh/ctrl-branch/ctrl-branch.plugin.zsh

+11-3
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,21 @@ ctrl-branch-command() {
5555

5656
## show menu
5757
# highlight shortcut letter inline in yellow
58-
# XXX preserve existing color after highlight
58+
# preserve branch color after hotkey highlight
5959
i=1
6060
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+
6170
key=$HOTKEYS[$i]
62-
hot=$fg_bold[yellow]$key$reset_color
71+
hot=$fg_bold[yellow]$key$reset_color$active_color
6372
# replace key in branch name with highlight
64-
branch=$BRANCHES[$i]
6573
hotbr=${branch/$key/$hot}
6674

6775
print ${m/$branch/$hotbr}

0 commit comments

Comments
 (0)