fix(vertico): disable minor mode highlight duly
Minor mode highlights did not disable as long as the mode was enabled. Amend: #7706
This commit is contained in:
parent
d657be1744
commit
7018cb45fb
1 changed files with 2 additions and 1 deletions
|
@ -371,7 +371,8 @@ orderless."
|
||||||
(if (or (eq sym major-mode)
|
(if (or (eq sym major-mode)
|
||||||
(and
|
(and
|
||||||
(memq sym minor-mode-list)
|
(memq sym minor-mode-list)
|
||||||
(boundp sym)))
|
(boundp sym)
|
||||||
|
(symbol-value sym)))
|
||||||
(add-face-text-property 0 (length cmd) 'font-lock-constant-face 'append cmd)))
|
(add-face-text-property 0 (length cmd) 'font-lock-constant-face 'append cmd)))
|
||||||
cmd))
|
cmd))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue