mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-20 16:11:07 -05:00
Fix broken, whitelisted evil-mc commands
Because they weren't being set correctly due to a faulty condition misreading nil.
This commit is contained in:
@@ -84,7 +84,7 @@
|
||||
;; :lang org
|
||||
(evil-org-delete . evil-mc-execute-default-evil-delete)))
|
||||
(setf (alist-get (car fn) evil-mc-custom-known-commands)
|
||||
(if (listp (cdr fn))
|
||||
(if (and (cdr fn) (listp (cdr fn)))
|
||||
(cdr fn)
|
||||
(list (cons :default
|
||||
(or (cdr fn)
|
||||
|
Reference in New Issue
Block a user