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))