File tree 1 file changed +24
-6
lines changed
1 file changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -24,18 +24,36 @@ ctrl-branch-command() {
24
24
BRANCHES+=($branch )
25
25
26
26
# # 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
30
28
# [m] always main
31
- if [[ $branch == " main" ]]; then
29
+ if [[ $branch == " main" || $branch == " master " ]]; then
32
30
HOTKEYS+=(" m" )
33
31
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
36
49
fi
37
50
done
38
51
52
+ # HOTKEYS+=($i)
53
+ # ((i++))
54
+
55
+ # # show menu
56
+ # XXX highlight shortcut letter inline in yellow
39
57
i=1
40
58
for m in $MENU ; do
41
59
print $HOTKEYS [$i ]" )" $m
You can’t perform that action at this time.
0 commit comments