aboutsummaryrefslogtreecommitdiff
path: root/modules/custom-ordering.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/custom-ordering.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/custom-ordering.el')
-rw-r--r--modules/custom-ordering.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/custom-ordering.el b/modules/custom-ordering.el
index c0b098f73..8e8a4da67 100644
--- a/modules/custom-ordering.el
+++ b/modules/custom-ordering.el
@@ -82,12 +82,11 @@ Produce a comma-separated list as the result."
(insert text)))
+
;; Ordering & sorting prefix and keymap
(define-prefix-command 'cj/ordering-map nil
- "Keymap for text ordering and sorting operations.")
+ "text ordering and sorting operations.")
(keymap-set cj/custom-keymap "o" #'cj/ordering-map)
-
-
(keymap-set cj/ordering-map "a" #'cj/arrayify)
(keymap-set cj/ordering-map "u" #'cj/unarrayify)
(keymap-set cj/ordering-map "A" #'cj/alphabetize-region)