From d22d004ed9bdc11dbc21be368f90384ed8b1b795 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 23 Oct 2025 00:15:14 -0500 Subject: refactor: unify and simplify key binding setups Optimized key binding configurations across modules for consistency and reduced redundancy. Improved conditional requiring to handle errors gracefully in `music-config.el`, ensuring robustness across different machine environments. Eliminated comments clutter and adjusted function definitions to adhere to revised standards. --- modules/jumper.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/jumper.el') diff --git a/modules/jumper.el b/modules/jumper.el index 787a4973..e1025472 100644 --- a/modules/jumper.el +++ b/modules/jumper.el @@ -168,7 +168,7 @@ Note that using M-SPC will override the default binding to just-one-space." (defun jumper-setup-keys () "Setup default keybindings for jumper." (interactive) - (global-set-key (kbd jumper-prefix-key) jumper-map)) + (keymap-global-set jumper-prefix-key jumper-map)) ;; Call jumper-setup-keys when the package is loaded (jumper-setup-keys) -- cgit v1.2.3