From mboxrd@z Thu Jan 1 00:00:00 1970 From: Puneeth Subject: Re: New implementation of the Org remember process ready for comments and testing Date: Wed, 23 Jun 2010 14:34:29 +0530 Message-ID: References: <9477C2E7-C194-4416-84B7-EF0B1B0C0C8A@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from [140.186.70.92] (port=34297 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ORLtC-0006Sj-1w for emacs-orgmode@gnu.org; Wed, 23 Jun 2010 05:04:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ORLt4-0003iH-JP for emacs-orgmode@gnu.org; Wed, 23 Jun 2010 05:04:51 -0400 Received: from mail-pv0-f169.google.com ([74.125.83.169]:58962) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ORLt4-0003i7-Cz for emacs-orgmode@gnu.org; Wed, 23 Jun 2010 05:04:50 -0400 Received: by pvd12 with SMTP id 12so866746pvd.0 for ; Wed, 23 Jun 2010 02:04:49 -0700 (PDT) In-Reply-To: <9477C2E7-C194-4416-84B7-EF0B1B0C0C8A@gmail.com> 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: Carsten Dominik Cc: Org Mode On Wed, Jun 23, 2010 at 10:01 AM, Carsten Dominik wrote: > [..] >> 1) tab completion on tags ( >> I have a couple of templates using ^g and ^G and they worked well with >> org-remember, but don't work with org-capture. I hope I'm not missing >> something here. > > I just tried - this is working well for me. I think this has got something to do with org-directory, though I'm not sure. My current set-up is enclosed below. Tab completion for tags (in all agenda files) shows only the tags present in the worg-todo file, not the ones in the notes file. ------------------------------------------------- (setq org-directory "/data/life-in-plain-text/") (custom-set-variables '(org-agenda-files (quote ("/data/life-in-plain-text/notes.org" "~/Worg/worg-todo.org")))) (setq org-capture-templates '(("t" "task" entry (file+headline "notes.org" "Refile") "* TODO %? %^G:\n %U\n"))) ------------------------------------------------- Thanks, Puneeth