From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Re: How to call org-set-property from a function Date: Wed, 06 Jan 2016 00:07:03 +0100 Message-ID: <877fjn8w2w.fsf@free.fr> References: <87r3hv8yid.fsf@free.fr> <87bn8zmzlk.fsf@gmx.us> 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]:54710) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGahB-0006M4-3J for emacs-orgmode@gnu.org; Tue, 05 Jan 2016 18:07:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aGah6-0008HO-54 for emacs-orgmode@gnu.org; Tue, 05 Jan 2016 18:07:17 -0500 Received: from plane.gmane.org ([80.91.229.3]:35059) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGah5-0008HJ-U1 for emacs-orgmode@gnu.org; Tue, 05 Jan 2016 18:07:12 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aGah2-0007D0-Q7 for emacs-orgmode@gnu.org; Wed, 06 Jan 2016 00:07:08 +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:07:08 +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:07:08 +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 Rasmus writes: > Does this do what you want: > > (call-interactively 'org-set-property) Thanks, indeed it does, Marcin beat you to it though :-) >> Also, I will sometimes need to include several different >> properties. What would be the right way to run a loop where a new >> property is set until the user answers something like C-return at the >> promptĀ ? > > Here's naive approach. Probably you can find a more elegant way. > > (condition-case nil > (while t > (call-interactively 'org-set-property)) > (quit nil)) That's working, I'm breaking out of the loop with C-g, is that what you intendedĀ ? Julien.