From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Re: command to skip the :PROPERTIES: drawer Date: Wed, 06 Jan 2016 00:25:08 +0100 Message-ID: <8737ub8v8r.fsf@free.fr> References: <87bn8z8wjh.fsf@free.fr> <87poxf7hsp.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59428) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGayl-0001Sj-CG for emacs-orgmode@gnu.org; Tue, 05 Jan 2016 18:25:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aGayi-00042p-6A for emacs-orgmode@gnu.org; Tue, 05 Jan 2016 18:25:27 -0500 Received: from plane.gmane.org ([80.91.229.3]:36345) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGayh-00042l-Ve for emacs-orgmode@gnu.org; Tue, 05 Jan 2016 18:25:24 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aGayf-0007Ka-SX for emacs-orgmode@gnu.org; Wed, 06 Jan 2016 00:25:21 +0100 Received: from gas45-3-82-244-252-119.fbx.proxad.net ([82.244.252.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 Jan 2016 00:25:21 +0100 Received: from j.cubizolles by gas45-3-82-244-252-119.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 Jan 2016 00:25:21 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Nicolas Goaziou writes: > Hello, > > Julien Cubizolles writes: > >> Let's say you have an entry like the followin, with the point in the >> Entry line. Is there an org command to put the mark on a newline after >> :END: ? At the moment, I have too many C-n to type for my taste :-) >> >> *** Entry :B_action: >> :PROPERTIES: >> :BEAMER_env: action >> :BEAMER_COL: 0.6 >> :END: > > See `org-end-of-meta-data'. Thanks, the following works. #+begin_src emacs-lisp (define-key org-mode-map "\C-ct" (lambda () (interactive) (org-end-of-meta-data))) #+end_src I'm curious as to why this isn't an interactive function. My workflow is usually 1. create an entry by C-return and eventually M-right or M-left 2. add the required properties 3. type the text in the entry Without org-end-of-meta-data, going fro 2m to 3 is not straightforward. Julien.