Skip to content

Commit b4b7953

Browse files
committed
ctrl-branch: Assign letter shortcuts instead of numbers
1 parent 819e695 commit b4b7953

File tree

1 file changed

+24
-6
lines changed

1 file changed

+24
-6
lines changed

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

+24-6
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,36 @@ ctrl-branch-command() {
2424
BRANCHES+=($branch)
2525

2626
## assign shortcuts
27-
# XXX get symbol shortcut instead of numeric
28-
# XXX empty labels when exhausted
29-
27+
# XXX when no shortcut found, assign free number then letter
3028
# [m] always main
31-
if [[ $branch == "main" ]]; then
29+
if [[ $branch == "main" || $branch == "master" ]]; then
3230
HOTKEYS+=("m")
3331
else
34-
HOTKEYS+=($i)
35-
((i++))
32+
IDX=0
33+
for ((n=1; n < ${#branch}; n++)) {
34+
char=$branch[$n]
35+
if [[ $char == "m" ]]; then
36+
continue
37+
fi
38+
# if $char is in $HOTKEYS
39+
IDX=$HOTKEYS[(I)$char]
40+
if [[ $IDX == 0 ]]; then
41+
HOTKEYS+=($char)
42+
break
43+
fi
44+
}
45+
# if no shortcut found, assign placeholder
46+
if [[ $IDX != 0 ]]; then
47+
HOTKEYS+=("_")
48+
fi
3649
fi
3750
done
3851

52+
#HOTKEYS+=($i)
53+
#((i++))
54+
55+
## show menu
56+
# XXX highlight shortcut letter inline in yellow
3957
i=1
4058
for m in $MENU; do
4159
print $HOTKEYS[$i]")" $m

0 commit comments

Comments
 (0)