blob: dfa0180a53d1b18ccecc434aa8a9033163bb0000 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
;;; +lookup.el -*- lexical-binding: t; -*-
;;; Commentary:
;; I look up a lot of things in Emacs. Let's bind them all to an easy-to-use
;; keymap.
;;; Code:
(defvar +lookup-map (let ((map (make-sparse-keymap)))
(define-key map "f" #'find-function)
(define-key map "l" #'find-library)
map)
"Keymap for looking up things.")
(provide '+lookup)
;;; +lookup.el ends here
|