From 7fe268c8cfe1017fd24a02e3eae29632b1fdeb26 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 21 Feb 2026 13:34:07 -0600 Subject: 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. --- modules/keybindings.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/keybindings.el') diff --git a/modules/keybindings.el b/modules/keybindings.el index 9d5ba454..462fde24 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 -- cgit v1.2.3