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