From mboxrd@z Thu Jan 1 00:00:00 1970 From: "tenspd137 ." Subject: org-capture-templates with multi charachter keys Date: Fri, 2 Oct 2015 14:06:26 -0600 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41958) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zi6b6-0003MN-Gr for emacs-orgmode@gnu.org; Fri, 02 Oct 2015 16:06:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zi6b5-0004bO-GR for emacs-orgmode@gnu.org; Fri, 02 Oct 2015 16:06:28 -0400 Received: from mail-io0-x22c.google.com ([2607:f8b0:4001:c06::22c]:36724) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zi6b5-0004bI-8F for emacs-orgmode@gnu.org; Fri, 02 Oct 2015 16:06:27 -0400 Received: by ioii196 with SMTP id i196so131703098ioi.3 for ; Fri, 02 Oct 2015 13:06:26 -0700 (PDT) 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 Hi all, I can't seem to find an answer for this, maybe someone could tell me what I am doing wrong. Based on what I read in the manual and examples I have seen, the following is valid for creating org-capture-templates: (setq org-capture-templates '(("t" "Todo" entry (file+headline (concat org-directory "/default.org") "Tasks") "* TODO %?\n %i\n %a") ("j" "Journal" entry (file+datetree (concat org-directory "/journal.org")) "* %?\nEntered on %U\n %i\n %a") ;;product stuff - I would like to move these to files and have ;;them loaded - maybe in the future ("bf" "Bluefin Todo" entry (file+headline (concat org-directory "/bluefin.org") "Tasks") "* TODO %?\n %i\n %a"))) the last one I am using "bf" as a key. When I go to use org capture, the following is shown in the menu Select a capture template =================== [t] Todo [j] Journal [bf] Bluefin Todo ---------------------------------------- [C] Customize org-capture-templates [q] Abort but when I hit b (as in bf), the mini-buffer just says invalid key `b' How do I use multiple keys? Thanks! -C