;;; +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