From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Bug: Bad doc [7.4] Date: Mon, 20 Dec 2010 01:58:37 -0500 Message-ID: <14239.1292828317@gamaville.dokosmarshall.org> References: Reply-To: nicholas.dokos@hp.com Return-path: Received: from [140.186.70.92] (port=40297 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PUZhs-0003fR-7O for emacs-orgmode@gnu.org; Mon, 20 Dec 2010 01:58:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PUZhq-00073E-Pb for emacs-orgmode@gnu.org; Mon, 20 Dec 2010 01:58:52 -0500 Received: from vms173005pub.verizon.net ([206.46.173.5]:33797) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PUZhq-00072a-MF for emacs-orgmode@gnu.org; Mon, 20 Dec 2010 01:58:50 -0500 Received: from gamaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173005.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0LDP00FDMSPP5080@vms173005.mailsrvcs.net> for emacs-orgmode@gnu.org; Mon, 20 Dec 2010 00:58:38 -0600 (CST) In-reply-to: Message from Dave Abrahams of "Sun, 19 Dec 2010 21:12:31 -0900." List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Dave Abrahams Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org Dave Abrahams wrote: > `C-c c C' > Customize the variable `org-capture-templates'. > > I don't know where that keybinding is supposed to come from, but as > far as I can tell, it isn't set anywhere. In fact, if we take the > manual's suggested `C-c c' binding for org-capture, the `C' above just > does a self-insert in the capture buffer. > Works fine here. It's not a run-of-the-mill keybinding: it's actually dynamically "bound" (in a manner of speaking) when org-capture gets executed. Assuming you have bound C-c c to org-capture, then you should get a menu somewhat like this with C-c c (but note that it will reflect *your* definition of org-capture-templates; and note also that the menu is constructed at runtime): ,---- | Select a capture template | ========================= | | [t] | [a] Appts | [h] Home | [w] Work | [n] Notes | ------------------------------------------------------------------------------- | [C] Customize org-capture-templates | [q] Abort `---- `C' and `q' are predefined in this menu. The org-capture code itself looks like this: --8<---------------cut here---------------start------------->8--- ... (cond ((equal entry "C") (customize-variable 'org-capture-templates)) ((equal entry "q") (error "Abort")) ... --8<---------------cut here---------------end--------------->8--- Hope that clarifies, Nick