aboutsummaryrefslogtreecommitdiff
path: root/modules/jumper.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-10-23 00:15:14 -0500
committerCraig Jennings <c@cjennings.net>2025-10-23 00:15:14 -0500
commitbd559d3b87438469fb27c6c5da63747df451f3ff (patch)
tree516652c77741824f0c1405e28a19b3acd218fd18 /modules/jumper.el
parent520dc8f3d31d590f8990087c427e6ca8bb43363b (diff)
downloaddotemacs-bd559d3b87438469fb27c6c5da63747df451f3ff.tar.gz
dotemacs-bd559d3b87438469fb27c6c5da63747df451f3ff.zip
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.
Diffstat (limited to 'modules/jumper.el')
-rw-r--r--modules/jumper.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/jumper.el b/modules/jumper.el
index 787a4973d..e1025472d 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)