emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] org-copy-subtree


From: 42 147
Subject: [O] org-copy-subtree
Date: Sat, 2 Feb 2013 15:05:37 -0500

I want to copy the text in the subtree, but not the headline. Right now I
use the following hack:

  (org-narrow-to-subtree)
  (beginning-of-buffer)
  (next-line 1)
  (setq minPoint (point))
  (copy-region-as-kill minPoint (point-max))
  (widen)

However, org-copy-subtree would do exactly what I need, IF it did not copy
the headline. Then I could cut out four lines of the above code.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]