summary refs log tree commit diff stats
path: root/lisp/+lookup.el
diff options
context:
space:
mode:
authorCase Duckworth2022-01-06 18:04:18 -0600
committerCase Duckworth2022-01-06 18:04:18 -0600
commit1aa0df763136f38255416a2c3c3f2dd0d4c5327d (patch)
tree4fe8574334c85d8c402703c7429496708d755fc4 /lisp/+lookup.el
parentFixup +defvar to be in line with defvar (diff)
parentAdd /POKE stub command (diff)
downloademacs-1aa0df763136f38255416a2c3c3f2dd0d4c5327d.tar.gz
emacs-1aa0df763136f38255416a2c3c3f2dd0d4c5327d.zip
Merge branch 'main' of https://tildegit.org/acdw/emacs
Diffstat (limited to 'lisp/+lookup.el')
-rw-r--r--lisp/+lookup.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/+lookup.el b/lisp/+lookup.el index f13f535..755f84e 100644 --- a/lisp/+lookup.el +++ b/lisp/+lookup.el
@@ -15,9 +15,12 @@
15 :keymap (let ((map (make-sparse-keymap))) 15 :keymap (let ((map (make-sparse-keymap)))
16 (define-key map "f" #'find-function) 16 (define-key map "f" #'find-function)
17 (define-key map "l" #'find-library) 17 (define-key map "l" #'find-library)
18 (define-key map "v" #'find-variable)
18 map) 19 map)
19 (define-key +key-mode-map (kbd "C-c l") (when +lookup-mode 20 (define-key +key-mode-map (kbd "C-c l") (when +lookup-mode
20 +lookup-mode-map))) 21 +lookup-mode-map)))
21 22
23(defvaralias '+lookup-map '+lookup-mode-map)
24
22(provide '+lookup) 25(provide '+lookup)
23;;; +lookup.el ends here 26;;; +lookup.el ends here