fix: Update visit/reload-config docs

This commit is contained in:
Laurens Miers 2025-04-30 09:37:32 +02:00
parent 0b57fa79b5
commit f5ef8d68c5

View file

@ -1179,12 +1179,12 @@ This should normally be done by the init.el to load this configuration.
#+BEGIN_SRC emacs-lisp
(defun myrmi/visit-config ()
"Reloads ~/.emacs.d/config.org at runtime"
"Visit emacs config"
(interactive)
(find-file my-config-file))
(defun myrmi/reload-config ()
"Reloads ~/.emacs.d/config.org at runtime"
"Reload emacs config at runtime"
(interactive)
(org-babel-load-file my-config-file))
#+END_SRC