From 4478fceaf5aeb1b015c54ab5890bc6b5e79c1dbc Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 25 Oct 2019 04:27:40 -0400 Subject: [PATCH] lang/emacs-lisp: add 'SPC m e l' & 'SPC m g l' For loading libraries and jumping to their source code. --- modules/lang/emacs-lisp/config.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/lang/emacs-lisp/config.el b/modules/lang/emacs-lisp/config.el index 6aed4463c..3d22d6c57 100644 --- a/modules/lang/emacs-lisp/config.el +++ b/modules/lang/emacs-lisp/config.el @@ -85,10 +85,12 @@ This marks a foldable marker for `outline-minor-mode' in elisp buffers.") "b" #'eval-buffer "d" #'eval-defun "e" #'eval-last-sexp - "r" #'eval-region) + "r" #'eval-region + "l" #'load-library) (:prefix ("g" . "goto") "f" #'find-function - "v" #'find-variable))) + "v" #'find-variable + "l" #'find-library))) ;; Adapted from http://www.modernemacs.com/post/comint-highlighting/ (add-hook! 'ielm-mode-hook