From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Belohrad Subject: org-tag-alist - more tags in one keystroke Date: Mon, 02 Mar 2015 14:41:48 +0100 Message-ID: <878uffplcz.fsf@pcbe13433.cern.ch> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34606) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSRAM-0008K9-SR for emacs-orgmode@gnu.org; Mon, 02 Mar 2015 09:17:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YSRAK-0008ME-67 for emacs-orgmode@gnu.org; Mon, 02 Mar 2015 09:17:50 -0500 Received: from pb-d-128-141-162-56.cern.ch ([128.141.162.56]:36442 helo=pcbe13433.cern.ch) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSRAJ-0008M0-Vr for emacs-orgmode@gnu.org; Mon, 02 Mar 2015 09:17:48 -0500 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: org-mode mailing list Dear All, i'm using ordinary org-tag-alist: setq org-tag-alist '( ("Attachment" . ?a) ("Budget" . ?b)) my question is, can I specify more tags for a single shortcut? Like: setq org-tag-alist '( ;; lowercase are general 'widely used' flags ("Attachment" . ?a) ("Budget:@Home" . ?b)) Whatever I do, I cannot force to make it running. My stuff is, that I have people names assigned under tags, and sometimes it happens that the names are the same, hence I need to distinguish according to surname: setq org-tag-alist '( ("@Pedersen:Joseph" . ?a) ("@Pedersen:Claire" . ?b)) ^^^ the above does not work. Is there any way how to make it working? thanks .d.