From 357645dc20f3e04afa627d060693db5ac639d720 Mon Sep 17 00:00:00 2001 From: MitchMarq42 Date: Sun, 25 Sep 2022 12:43:01 -0800 Subject: [PATCH] When inserting new org heading, jump to bottom of file --- lisp/mitch-orgstuff.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/mitch-orgstuff.el b/lisp/mitch-orgstuff.el index 1c775b6..a448483 100644 --- a/lisp/mitch-orgstuff.el +++ b/lisp/mitch-orgstuff.el @@ -84,6 +84,7 @@ the end." "Insert a brand new 2nd level Org heading containing the current date/time. Start insert mode." (interactive) + (goto-char (point-max)) (insert "* ") (mitch-insert-current-datetime) (evil-insert 1))