Fix unbalanced-parenthesis error in some helpful-variable buffers

This commit is contained in:
Henrik Lissner 2018-03-12 12:51:05 -04:00
parent a90d17ae38
commit 5726da8be2
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 15 additions and 1 deletions

View file

@ -231,7 +231,9 @@ extension, try to guess one."
(global-set-key [remap describe-function] #'helpful-callable)
(global-set-key [remap describe-command] #'helpful-command)
(global-set-key [remap describe-variable] #'helpful-variable)
(global-set-key [remap describe-key] #'helpful-key))
(global-set-key [remap describe-key] #'helpful-key)
(advice-add #'helpful--pretty-print :override #'doom*fix-helpful-prettyprint))
(def-package! pcre2el
:commands rxt-quote-pcre)