Escape key regexps when building which-key leader prefix
This commit is contained in:
parent
be6efd8dbf
commit
ec76d9acb6
1 changed files with 2 additions and 2 deletions
|
@ -124,8 +124,8 @@ If any hook returns non-nil, all hooks after it are ignored.")
|
||||||
(concat "\\(?:"
|
(concat "\\(?:"
|
||||||
(cl-loop for key in (append (list doom-leader-key doom-leader-alt-key)
|
(cl-loop for key in (append (list doom-leader-key doom-leader-alt-key)
|
||||||
(where-is-internal 'doom/leader))
|
(where-is-internal 'doom/leader))
|
||||||
if (stringp key) collect key into keys
|
if (stringp key) collect (regexp-quote key) into keys
|
||||||
else collect (key-description key) into keys
|
else collect (regexp-quote (key-description key)) into keys
|
||||||
finally return (string-join keys "\\|"))
|
finally return (string-join keys "\\|"))
|
||||||
"\\)"))))
|
"\\)"))))
|
||||||
(add-hook 'doom-after-init-modules-hook #'doom|init-leader-keys)
|
(add-hook 'doom-after-init-modules-hook #'doom|init-leader-keys)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue