add more keybindings and fix the M-bs key
This commit is contained in:
parent
52f47ddfd7
commit
be4efcf5b9
14
conf.org
14
conf.org
|
@ -1799,12 +1799,12 @@ Some of these commands just get in the way of being evil (which really means tha
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(mapc (lambda (k) (nd/move-key global-map evil-emacs-state-map (eval k)))
|
(mapc (lambda (k) (nd/move-key global-map evil-emacs-state-map (eval k)))
|
||||||
'((kbd "C-s")
|
'((kbd "C-s")
|
||||||
(kbd "C-p")
|
(kbd "C-p")
|
||||||
(kbd "C-n")
|
(kbd "C-n")
|
||||||
(kbd "C-f")
|
(kbd "C-f")
|
||||||
(kbd "C-b")
|
(kbd "C-b")
|
||||||
(kbd "C-a")
|
(kbd "C-a")
|
||||||
(kbd "C-e")
|
(kbd "C-e")
|
||||||
|
|
||||||
(kbd "C-x C-;")
|
(kbd "C-x C-;")
|
||||||
(kbd "C-x C-l")
|
(kbd "C-x C-l")
|
||||||
|
@ -1831,7 +1831,7 @@ Some of these commands just get in the way of being evil (which really means tha
|
||||||
(kbd "M-z")
|
(kbd "M-z")
|
||||||
(kbd "M-v")
|
(kbd "M-v")
|
||||||
(kbd "M-/")
|
(kbd "M-/")
|
||||||
(kbd "M-backspace")))
|
(kbd "M-DEL")))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** evil-org
|
*** evil-org
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
|
Loading…
Reference in New Issue