From 11b51ae704ae73fc33a0764b5ed5ffc4ccb3011b Mon Sep 17 00:00:00 2001 From: MitchMarq42 Date: Sat, 24 Sep 2022 19:34:15 -0800 Subject: [PATCH] First not second heading --- lisp/mitch-orgstuff.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/mitch-orgstuff.el b/lisp/mitch-orgstuff.el index 14f212c..1c775b6 100644 --- a/lisp/mitch-orgstuff.el +++ b/lisp/mitch-orgstuff.el @@ -80,11 +80,11 @@ the end." (insert (format "%s %s\n" (calendar-date-string (calendar-current-date)) (format-time-string "%-l:%M %p")))) -(defun mitch-2nd-heading-now () +(defun mitch-1st-heading-now () "Insert a brand new 2nd level Org heading containing the current date/time. Start insert mode." (interactive) - (insert "** ") + (insert "* ") (mitch-insert-current-datetime) (evil-insert 1))