• 2 Posts
  • 8 Comments
Joined 1 year ago
cake
Cake day: October 4th, 2023

help-circle
  • Can you clarify what you need? Are you just looking to open a parent or child heading, like C-RET or M-RET but at higher/lower level? Because that’s pretty trivial in elisp:

    (defun org-insert-child ()
       (interactive)
       (org-insert-heading)
       (org-do-demote))
    
    
    (defun org-insert-parent ()
       (interactive)
       (org-insert-heading)
       (org-do-promote))