From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: Hide file names in agenda view Date: Thu, 28 Jan 2010 19:06:07 -0500 Message-ID: <87tyu5kc5s.fsf@fastmail.fm> References: <20100128220653.7F715320056@mail.dagertech.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NaeMd-0001Uy-Jq for emacs-orgmode@gnu.org; Thu, 28 Jan 2010 19:05:31 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NaeMZ-0001QN-6L for emacs-orgmode@gnu.org; Thu, 28 Jan 2010 19:05:31 -0500 Received: from [199.232.76.173] (port=35375 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NaeMY-0001QG-W9 for emacs-orgmode@gnu.org; Thu, 28 Jan 2010 19:05:27 -0500 Received: from out2.smtp.messagingengine.com ([66.111.4.26]:58553) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NaeMY-00015a-Cu for emacs-orgmode@gnu.org; Thu, 28 Jan 2010 19:05:26 -0500 In-Reply-To: <20100128220653.7F715320056@mail.dagertech.net> (David A. Gershman's message of "Thu, 28 Jan 2010 14:06:53 -0800 (PST)") 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: "David A. Gershman" Cc: Org-Mode List "David A. Gershman" writes: > I've been searching a while and thought it'd be simple to find. How can > I suppress the file names in the agenda view? > > i.e. turn > > file2: 7:00- 8:00 alwkjekisdjksj > file1: 10:00-11:00 alsdkfjasdlfkj > > into > > 7:00- 8:00 alwkjekisdjksj > 10:00-11:00 alsdkfjasdlfkj > This is controlled via the variable org-agenda-prefix-format. You can type C-h v org-agenda-prefix-format to get all the details. Here's very *simple* setting to get rid of file names on all agenda views: (setq org-agenda-prefix-format "%t %s") - Matt