Org-mode in emacs: how to move the entire header one level down

I have an org

* second level
** third level
*** fourth level

      

And then I find that the second level should be ** the second level instead of * the second level, so I want to push all the header one level below, the result is

* some heading which I will add manully
** second level
*** third level
**** fouth level

      

+3


source to share


2 answers


With the cursor on, second level

press M-S-right(calls org-shiftmetaright

).



In worf , it is cflq.

+3


source


Create a new heading and use org-refile

( C-c C-w

) to move the "First Level" under the new heading. All children of the first level will be moved and changed accordingly.



+1


source







All Articles