mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Start tab numbering from 1 instead of 0 #262
This commit is contained in:
@ -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)))
|
||||||
|
Reference in New Issue
Block a user