diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-19T11·41+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-20T10·26+0100 |
commit | 4ae6eff607a5ebd52f8a271bf34c32f2e2fe60f6 (patch) | |
tree | 20e5bb8405d180d0a9cbdea0d4b994851ea9922e /emacs/.emacs.d | |
parent | 23cf5d43d8fdd913eec46af1b4f08499ec13bfc0 (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')
-rw-r--r-- | emacs/.emacs.d/wpc/kbd.el | 8 |
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 |