mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
15 lines
328 B
EmacsLisp
15 lines
328 B
EmacsLisp
;;; siren-debug-map.el --- jimeh's Emacs Siren: debug-map setup.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Setup of siren-debug-map which other debugging modules can add keybindings
|
|
;; to.
|
|
|
|
;;; Code:
|
|
|
|
(define-prefix-command 'siren-debug-map)
|
|
(general-define-key "C-c -" 'siren-debug-map)
|
|
|
|
(provide 'siren-debug-map)
|
|
;;; siren-debug-map.el ends here
|