From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: property values and timestamps Date: Fri, 21 Oct 2011 17:47:44 +0200 Message-ID: <87y5weqqfv.fsf@altern.org> References: <11760.1318571403@alphaville.dokosmarshall.org> <25568.1318607969@alphaville.dokosmarshall.org> <26314.1318609775@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52309) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHHbv-00059Z-2p for emacs-orgmode@gnu.org; Fri, 21 Oct 2011 12:06:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RHHbl-00036m-G9 for emacs-orgmode@gnu.org; Fri, 21 Oct 2011 12:06:19 -0400 Received: from mail-ww0-f49.google.com ([74.125.82.49]:37050) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHHbl-00036C-AA for emacs-orgmode@gnu.org; Fri, 21 Oct 2011 12:06:09 -0400 Received: by mail-ww0-f49.google.com with SMTP id 27so611381wwf.30 for ; Fri, 21 Oct 2011 09:06:08 -0700 (PDT) In-Reply-To: <26314.1318609775@alphaville.dokosmarshall.org> (Nick Dokos's message of "Fri, 14 Oct 2011 12:29:35 -0400") 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: nicholas.dokos@hp.com Cc: Skip Collins , emacs-orgmode@gnu.org Hi Skip and Nick, Nick Dokos writes: > Still a proof-of-concept, but better than the first attempt - set > recursive minibuffers locally and use the standard keybinding: > > (defun org-completing-read (&rest args) > "Completing-read with SPACE being a normal character." > (let ((minibuffer-local-completion-map > (copy-keymap minibuffer-local-completion-map)) > (enable-recursive-minibuffers t)) > (org-defkey minibuffer-local-completion-map " " 'self-insert-command) > (org-defkey minibuffer-local-completion-map "?" 'self-insert-command) > (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive) > (apply 'org-icompleting-read args))) I allowed recursive minibuffers in `org-completing-read'. Thanks for this neat idea and proof-of-concept! -- Bastien