summary refs log tree commit diff stats
path: root/lisp/+lookup.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/+lookup.el')
-rw-r--r--lisp/+lookup.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/lisp/+lookup.el b/lisp/+lookup.el new file mode 100644 index 0000000..dfa0180 --- /dev/null +++ b/lisp/+lookup.el
@@ -0,0 +1,17 @@
1;;; +lookup.el -*- lexical-binding: t; -*-
2
3;;; Commentary:
4
5;; I look up a lot of things in Emacs. Let's bind them all to an easy-to-use
6;; keymap.
7
8;;; Code:
9
10(defvar +lookup-map (let ((map (make-sparse-keymap)))
11 (define-key map "f" #'find-function)
12 (define-key map "l" #'find-library)
13 map)
14 "Keymap for looking up things.")
15
16(provide '+lookup)
17;;; +lookup.el ends here