From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Daniel J. Sinder" Subject: Re: Hiding #+XXX lines Date: Fri, 22 May 2009 13:35:16 -0700 Message-ID: <4A170C84.6000205@gmail.com> References: <146AFBC1-F187-44EF-AA71-2E13552FF5D7@mac.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M7bSg-00058T-DR for emacs-orgmode@gnu.org; Fri, 22 May 2009 16:35:26 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M7bSZ-00054a-NQ for emacs-orgmode@gnu.org; Fri, 22 May 2009 16:35:26 -0400 Received: from [199.232.76.173] (port=50797 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M7bSZ-00054X-IL for emacs-orgmode@gnu.org; Fri, 22 May 2009 16:35:19 -0400 Received: from caiajhbdcahe.dreamhost.com ([208.97.132.74]:38624 helo=randymail-a1.g.dreamhost.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M7bSZ-00031s-75 for emacs-orgmode@gnu.org; Fri, 22 May 2009 16:35:19 -0400 In-Reply-To: <146AFBC1-F187-44EF-AA71-2E13552FF5D7@mac.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: Keith Lancaster Cc: org-mode As Keith Lancaster so eloquently wrote on 5/21/2009 2:41 PM: > Is it possible to hide, during normal editing, the configuration / > comment lines in a project file? I put my entire top-of-the-file configuration in a property drawer. It can obviously be expanded on demand, but otherwise is not expanded (ie, when I load the file). My .emacs has this (from Custom): (custom-set-variables '(org-drawers (quote ("PROPERTIES" "SETUP" "LOGBOOK")))) The my .org file has this at the top (for example): :SETUP: #+STARTUP: hidestars odd lognoteclock-out lognotedone #+LANGUAGE: en #+OPTIONS: H:4 num:nil toc:nil \n:nil @:t ::t |:t ^:{} *:t TeX:f #+CATEGORY: PROJECTS #+TYP_TODO: TODO(t/@) INPROGRESS(i@/@)| CANCELED(C@/@) DONE(D@/@) #+FILETAGS: Work :END: Dan