From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: tagging during creation Date: Sun, 4 Nov 2007 14:46:48 +0100 Message-ID: <898963DF-3FAD-4158-BF63-AE069C36E283@science.uva.nl> References: <87ir4nl6rq.fsf@bzg.ath.cx> <87k5p3jotp.fsf@bzg.ath.cx> <630A9B9D-9387-45C0-8E0A-82EF38D733D8@science.uva.nl> <87tzo29n4e.fsf@bzg.ath.cx> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Iofog-00019V-8x for emacs-orgmode@gnu.org; Sun, 04 Nov 2007 08:47:06 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Iofoe-00019C-Eq for emacs-orgmode@gnu.org; Sun, 04 Nov 2007 08:47:05 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Iofoe-000199-7G for emacs-orgmode@gnu.org; Sun, 04 Nov 2007 08:47:04 -0500 Received: from fk-out-0910.google.com ([209.85.128.185]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Iofod-0005hT-Uy for emacs-orgmode@gnu.org; Sun, 04 Nov 2007 08:47:04 -0500 Received: by fk-out-0910.google.com with SMTP id 19so2694155fkr for ; Sun, 04 Nov 2007 05:47:02 -0800 (PST) In-Reply-To: <87tzo29n4e.fsf@bzg.ath.cx> 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: Bastien Cc: emacs-orgmode@gnu.org On 4Nov2007, at 2:05 PM, Bastien wrote: > Carsten Dominik writes: > >>> - (org-set-local 'org-tag-alist nil) >>> + (org-set-local 'org-tag-alist org-tag-alist) >> >> I don't think this patch is correct. This code is only executed when >> there is a #+TAGS line in the buffer, and then it needs to be >> executed, to overrule the global settings. If there is no #+TAGS >> line, the global value will be used. > >> What exactly are you trying to fix with this patch? > > I was trying to address Richard's question: > > Is it possible to set tags from withing the org-remember entry > buffer? > > The first problem is that remember buffers steal the C-c C-c key. You > cannot add fast tag selection as usual. A solution might be to use > the > C-x C-s key to process the *remember* buffer and bind C-c C-c back to > org-set-tags. What do you think? No, this is not an option, because C-c C-c is the standard remember key. But you are right, we need a way to set tags. - Carsten