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.
This commit is contained in:
William Carroll 2020-08-19 12:41:19 +01:00
parent 23cf5d43d8
commit 4ae6eff607

View file

@ -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