lang/emacs-lisp: add 'SPC m e l' & 'SPC m g l'

For loading libraries and jumping to their source code.
This commit is contained in:
Henrik Lissner 2019-10-25 04:27:40 -04:00
parent 019308a93c
commit 4478fceaf5
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -85,10 +85,12 @@ This marks a foldable marker for `outline-minor-mode' in elisp buffers.")
"b" #'eval-buffer "b" #'eval-buffer
"d" #'eval-defun "d" #'eval-defun
"e" #'eval-last-sexp "e" #'eval-last-sexp
"r" #'eval-region) "r" #'eval-region
"l" #'load-library)
(:prefix ("g" . "goto") (:prefix ("g" . "goto")
"f" #'find-function "f" #'find-function
"v" #'find-variable))) "v" #'find-variable
"l" #'find-library)))
;; Adapted from http://www.modernemacs.com/post/comint-highlighting/ ;; Adapted from http://www.modernemacs.com/post/comint-highlighting/
(add-hook! 'ielm-mode-hook (add-hook! 'ielm-mode-hook