When I copy an outline into an org-mode
buffer, Emacs automatically unfolds it. How can I prevent it from doing so?
I always want the outlines I paste in to be fully folded.
Here's an example:
If my org-mode buffer looks like:
* A
** AA
*** AAA
** AB
*** ABA
* B
** BA
*** BAA
** BB
*** BBA
* C
** CA
*** CAA
** CB
*** CBA
and I fold all those outlines up, so that org shows them as:
* A...
* B...
* C...
Then I cut (or kill) the * A...
outline, so I'm just left with:
* B...
* C...
Normally, by default, when I paste (or yank) the previously cut (killed) * A...
outline, org inserts it and unfolds it so that it looks like:
* B...
* A
** AA
*** AAA
** AB
*** ABA
* C...
Instead, when I paste it in, I'd like it to be fully folded, so that it looks like:
* B...
* A...
* C...