From mboxrd@z Thu Jan 1 00:00:00 1970 From: Colin Baxter Subject: Re: Changed indentation of property blocks? Date: Mon, 28 Nov 2016 10:46:14 +0000 Message-ID: <87y403vq4p.fsf@yandex.com> References: <2016-11-25T17-53-57@devnull.Karl-Voit.at> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57275) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cBJS9-000389-MP for emacs-orgmode@gnu.org; Mon, 28 Nov 2016 05:46:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cBJS5-0007Kf-PR for emacs-orgmode@gnu.org; Mon, 28 Nov 2016 05:46:29 -0500 Received: from forward4p.cmail.yandex.net ([77.88.31.19]:56944) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cBJS5-0007KG-DJ for emacs-orgmode@gnu.org; Mon, 28 Nov 2016 05:46:25 -0500 In-Reply-To: <2016-11-25T17-53-57@devnull.Karl-Voit.at> (Karl Voit's message of "Fri, 25 Nov 2016 18:04:03 +0100") 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" To: Karl Voit Cc: Karl Voit , emacs-orgmode@gnu.org On Fri, Nov 25 2016, Karl Voit wrote: > Hi! > > I upgraded my Org-mode maint branch from approx. July to current. > > GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.14.5) > > Now I noticed a different behavior when adding a new heading via Alt-RET (or > org-insert-heading-respect-content): > > ** Heading with properties (old style) > :PROPERTIES: > :CREATED: [2016-11-25 Fri 17:52] > :END: > > ** Heading with properties (current style) > :PROPERTIES: > :CREATED: [2016-11-25 Fri 17:52] > :END: > > Is this on purpose? I find it quite unfortunate that the drawers are indented > according to the level of their heading. I'd prefer the old style: drawers not > indented - as the body below the heading. > > If it matters, I am using org-hide-leading-stars. > > > Thanks for clarifying! You could disable indentation as a local variable, viz # Local Variables: # eval: (setq org-adapt-indentation nil) # End: