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 #+BEGIN_SRC emacs-lisp
(defun myrmi/visit-config () (defun myrmi/visit-config ()
"Reloads ~/.emacs.d/config.org at runtime" "Visit emacs config"
(interactive) (interactive)
(find-file my-config-file)) (find-file my-config-file))
(defun myrmi/reload-config () (defun myrmi/reload-config ()
"Reloads ~/.emacs.d/config.org at runtime" "Reload emacs config at runtime"
(interactive) (interactive)
(org-babel-load-file my-config-file)) (org-babel-load-file my-config-file))
#+END_SRC #+END_SRC