emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] [RFC, mini] org-mark-element-parent


From: Nicolas Goaziou
Subject: Re: [O] [RFC, mini] org-mark-element-parent
Date: Tue, 30 May 2017 09:01:33 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)

Hello,

Marco Wahl <address@hidden> writes:

> 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

There is already a binding to move to the beginning of the parent
element (C-c C-^, IIRC).

IMO, this is not only marginally useful. Also, it doesn't handle
headlines.

Regards,

-- 
Nicolas Goaziou



reply via email to

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