From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fredrik Subject: Re: One-key combo entry? Date: Sun, 17 Nov 2013 11:26:11 +0100 Message-ID: <528899C3.5060802@jumans.net> References: <52876AC4.7080401@jumans.net> <87wqk8a445.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40266) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VhzYn-0000WD-7x for emacs-orgmode@gnu.org; Sun, 17 Nov 2013 05:26:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VhzYh-0001Ix-7K for emacs-orgmode@gnu.org; Sun, 17 Nov 2013 05:26:33 -0500 Received: from mail.talkactive.net ([195.128.174.76]:5034) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VhzYh-0001It-0k for emacs-orgmode@gnu.org; Sun, 17 Nov 2013 05:26:27 -0500 Received: from Fredriks-MacBook-Pro.local (c-4ff7e155.03-42-73746f4.cust.bredbandsbolaget.se [85.225.247.79]) (Authenticated sender: fredrik@jumans.net) by mail.talkactive.net (Postfix) with ESMTPSA id 752A640D92 for ; Sun, 17 Nov 2013 11:26:09 +0100 (CET) In-Reply-To: <87wqk8a445.fsf@bzg.ath.cx> 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 Ok, I've set up the following : (defun myorg-meta () "Ask for metadata" (interactive) (org-schedule) (org-deadline) (org-set-tags-command) (org-todo)) (global-set-key "\C-cm" 'myorg-meta) And it works if I only use org-set-tags and org-todo but fails when I try to use org-schedule and org-deadline. Has anyone else done anything like this and have any tips? Regards, Fredrik On 16/11/13 14:05, Bastien wrote: > Hi Fredrik, > > Fredrik writes: > >> Is it possible to set up so when when standing on a header push one >> key combo and one after another be asked about about the todo-word, >> keyword, deadline and then schedule for an entry? > Not with the core functions, but I'm sure someone can provide this > command. May be a good idea to let newcomers discovers all metadata > for an entry interactively. >