diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-21 13:34:07 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-21 13:34:07 -0600 |
| commit | 4d4c6da42ba8d009e436e49ab6e30767cc8a2d23 (patch) | |
| tree | 04b73dd6138c2e162ee04bc96a78e2b8956eb792 /modules | |
| parent | d8fb52486f3f414db0086f97a9bbcf175329b1e1 (diff) | |
| download | dotemacs-4d4c6da42ba8d009e436e49ab6e30767cc8a2d23.tar.gz dotemacs-4d4c6da42ba8d009e436e49ab6e30767cc8a2d23.zip | |
fix(keybindings): make C-z a prefix map instead of unsetting it
Unsetting C-z bound it to nil, which blocked font-config.el from
binding C-z F. This cascaded through init and prevented alert and
chime from loading.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/keybindings.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/keybindings.el b/modules/keybindings.el index 9d5ba4540..462fde246 100644 --- a/modules/keybindings.el +++ b/modules/keybindings.el @@ -108,7 +108,7 @@ Errors if VAR is unbound, not a non-empty string, or the file does not exist." ;; Avoid hostile bindings (keymap-global-unset "C-x C-f") ;; find-file-read-only (keymap-global-set "C-x C-f" #'find-file) -(keymap-global-unset "C-z") ;; suspend-frame is accidentally hit often +(keymap-global-set "C-z" (make-sparse-keymap)) ;; replace suspend-frame with prefix map (keymap-global-unset "M-o") ;; facemenu-mode ;; Add commonly-used general keybindings |
