about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/kbd.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-19T11·41+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-20T10·26+0100
commit4ae6eff607a5ebd52f8a271bf34c32f2e2fe60f6 (patch)
tree20e5bb8405d180d0a9cbdea0d4b994851ea9922e /emacs/.emacs.d/wpc/kbd.el
parent23cf5d43d8fdd913eec46af1b4f08499ec13bfc0 (diff)
Remove unused kbd/install-kbds?
In another refactor, I'd like to move all ad-hoc keybindings out of individual
modules and into keybindings.el.
Diffstat (limited to 'emacs/.emacs.d/wpc/kbd.el')
-rw-r--r--emacs/.emacs.d/wpc/kbd.el8
1 files changed, 0 insertions, 8 deletions
diff --git a/emacs/.emacs.d/wpc/kbd.el b/emacs/.emacs.d/wpc/kbd.el
index 49b346bc6ea8..ac69a5b261bd 100644
--- a/emacs/.emacs.d/wpc/kbd.el
+++ b/emacs/.emacs.d/wpc/kbd.el
@@ -27,9 +27,6 @@
 ;; Constants
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
-(defconst kbd/install-kbds? t
-  "When t, install keybindings defined herein.")
-
 (defconst kbd/prefixes
   '((workspace . "s")
     (x11 . "C-s"))
@@ -81,10 +78,5 @@ Values for F include:
   (message "[kbd] Awaiting keypress...")
   (message (string/format "[kbd] keycode: %s" (read-key))))
 
-;; (when kbd/install-kbds?
-;;   (general-define-key
-;;    :prefix "<SPC>"
-;;    "hr" #'kbd/print-keycode))
-
 (provide 'kbd)
 ;;; kbd.el ends here