mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix nvmap macro
This commit is contained in:
@ -12,8 +12,8 @@
|
||||
(defmacro emap (map &rest body)
|
||||
`(evil-define-key 'emacs ,map ,@body))
|
||||
(defmacro nvmap (map &rest body)
|
||||
`(evil-define-key 'normal ,map ,@body)
|
||||
`(evil-define-key 'visual ,map ,@body))
|
||||
`(progn (evil-define-key 'normal ,map ,@body)
|
||||
(evil-define-key 'visual ,map ,@body)))
|
||||
|
||||
;; insert-mode key-chord mapping
|
||||
(defmacro ichmap (key command)
|
||||
|
Reference in New Issue
Block a user