From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Remove filename from agenda view? Date: Fri, 4 Jan 2013 08:02:45 +0100 Message-ID: References: <4DB6EC82-B0E3-42E2-A37D-C952CADC9450@gmail.com> <15755.1357277294@alphaville> Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44528) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tr1Ip-0000F6-Hn for emacs-orgmode@gnu.org; Fri, 04 Jan 2013 02:02:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tr1Io-0006cO-HL for emacs-orgmode@gnu.org; Fri, 04 Jan 2013 02:02:51 -0500 Received: from mail-ea0-f182.google.com ([209.85.215.182]:42071) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tr1Io-0006cE-9S for emacs-orgmode@gnu.org; Fri, 04 Jan 2013 02:02:50 -0500 Received: by mail-ea0-f182.google.com with SMTP id a14so6738525eaa.41 for ; Thu, 03 Jan 2013 23:02:48 -0800 (PST) In-Reply-To: <15755.1357277294@alphaville> 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: nicholas.dokos@hp.com Cc: "emacs-orgmode@gnu.org" , Boyan Penkov On 4.1.2013, at 06:28, Nick Dokos wrote: > Boyan Penkov wrote: >=20 >> Hello, >>=20 >> In the default agenda view (C-c a), the leftmost column is the = org-mode file name from which the given item stems. However, I use a = single file for all my actionables, and would like to eliminate this = column, as it wastes 12 or so characters worth of space on the left of = the agenda. >>=20 >=20 > Not quite: it is the "category" of the item which, if absent, is > defaulted to the filename. Check section 10.4.1, "Categories", of > the org manual for more information - evaluate the following: >=20 > (info "(org) Categories") >=20 >> Can anyone point me in the right direction with a .emacs file = snippet? >>=20 >=20 > AFAIK, you cannot eliminate it in any simple way. Well, you can customize org-agenda-prefix-format and remove the "%-12:c" = from each of the strings where you do not want the category to be shown. = Note that the two leading space characters in these formats are = necessary IIRC, for technical reasons. (setq org-agenda-prefix-format '((agenda . " %i %?-12t% s") (timeline . " % s") (todo . " %i ") (tags . " %i ") (search . " %i ")) - Carsten