When inserting new org heading, jump to bottom of file

This commit is contained in:
MitchMarq42 2022-09-25 12:43:01 -08:00
parent 0a09256a6e
commit 357645dc20

View File

@ -84,6 +84,7 @@ the end."
"Insert a brand new 2nd level Org heading containing the current date/time. "Insert a brand new 2nd level Org heading containing the current date/time.
Start insert mode." Start insert mode."
(interactive) (interactive)
(goto-char (point-max))
(insert "* ") (insert "* ")
(mitch-insert-current-datetime) (mitch-insert-current-datetime)
(evil-insert 1)) (evil-insert 1))