From f5ef8d68c597b2c6c0423dc169395b2aab29f738 Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Wed, 30 Apr 2025 09:37:32 +0200 Subject: [PATCH] fix: Update visit/reload-config docs --- config.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.org b/config.org index 24b9c10..1eb50cd 100644 --- a/config.org +++ b/config.org @@ -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