Start tab numbering from 1 instead of 0 #262
This commit is contained in:
parent
5f166d9297
commit
655f14a85d
1 changed files with 1 additions and 1 deletions
|
@ -441,7 +441,7 @@ the workspace and move to the next."
|
||||||
(cl-loop for name in names
|
(cl-loop for name in names
|
||||||
for i to (length names)
|
for i to (length names)
|
||||||
collect
|
collect
|
||||||
(propertize (format " [%d] %s " i name)
|
(propertize (format " [%d] %s " (1+ i) name)
|
||||||
'face (if (equal current-name name)
|
'face (if (equal current-name name)
|
||||||
'+workspace-tab-selected-face
|
'+workspace-tab-selected-face
|
||||||
'+workspace-tab-face)))
|
'+workspace-tab-face)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue