Fix keybindings module

This commit is contained in:
Fabio Scotto di Santolo
2025-12-23 15:55:26 +01:00
parent 049c76c04a
commit fa1928af8d
12 changed files with 183 additions and 71 deletions

View File

@@ -8,7 +8,7 @@
(expand-file-name "lisp" user-emacs-directory))
(defun fscotto/load-module (module)
"Load a module from symbol"
"Load a MODULE from symbol."
(let* ((module-name (symbol-name module))
(path (expand-file-name
(concat (replace-regexp-in-string "/" "/" module-name)
@@ -19,6 +19,7 @@
(load path nil 'nomessage)))
(defun fscotto/load-modules (&rest modules)
"Load MODULES."
(mapc #'fscotto/load-module modules))
;;=====================================================================================