Fix nvmap macro
This commit is contained in:
parent
e0c72477ae
commit
2838f301ff
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue