mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-27 14:23:43 -05:00
lang/org: fix off-by-one coloring in eldoc breadcrumbs
This commit is contained in:
@@ -456,7 +456,7 @@ eldoc string."
|
||||
(separator (or separator "/")))
|
||||
(string-join
|
||||
(cl-loop for part
|
||||
in (split-string (substring-no-properties result) separator)
|
||||
in (cdr (split-string (substring-no-properties result) separator))
|
||||
for n from 0
|
||||
for face = (nth (% n org-n-level-faces) org-level-faces)
|
||||
collect
|
||||
|
Reference in New Issue
Block a user