emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [RFC, mini] org-mark-element-parent
@ 2017-05-29 23:00 Marco Wahl
  2017-05-30  7:01 ` Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: Marco Wahl @ 2017-05-29 23:00 UTC (permalink / raw)
  To: emacs-orgmode

Hi Orgers,

is the following function worthy to occupy space in Orgmode?

#v+
(defun org-mark-element-parent ()
  "Put point at beginning of the parent element, mark at end."
  (interactive)
  (let ((parent (org-element-property :parent (org-element-at-point))))
    (when parent
      (push-mark (org-element-property :end parent) t t)
      (goto-char (org-element-property :begin parent)))))
#v-

Can be used to e.g.
- mark a table or
- a plain list


Best regards
            Marco
             

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-05-30  7:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-29 23:00 [RFC, mini] org-mark-element-parent Marco Wahl
2017-05-30  7:01 ` Nicolas Goaziou
2017-05-30  7:51   ` Marco Wahl

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).