From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcus Klemm Subject: Re: Tags not lining up in org-indent-mode Date: Fri, 23 Jul 2010 19:56:48 +0000 (UTC) Message-ID: References: <87r5maostn.fsf@riotblast.dunsmor.com> <87fx2nnw58.fsf@riotblast.dunsmor.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=44763 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OcOPu-00058B-JB for emacs-orgmode@gnu.org; Fri, 23 Jul 2010 16:00:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OcOPf-0003Te-3d for emacs-orgmode@gnu.org; Fri, 23 Jul 2010 16:00:08 -0400 Received: from lo.gmane.org ([80.91.229.12]:36745) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OcOPe-0003TP-UZ for emacs-orgmode@gnu.org; Fri, 23 Jul 2010 16:00:07 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OcOPc-0001FM-38 for emacs-orgmode@gnu.org; Fri, 23 Jul 2010 22:00:04 +0200 Received: from erft-4d07fd58.pool.mediaWays.net ([77.7.253.88]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 23 Jul 2010 22:00:04 +0200 Received: from marcus.klemm by erft-4d07fd58.pool.mediaWays.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 23 Jul 2010 22:00:04 +0200 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: emacs-orgmode@gnu.org Carsten Dominik gmail.com> writes: > well, this does stop tabs from being used, but it does > not stop the mis-alignment of tags on different outline > levels. Any news on that? Although I have no idea how org-mode works internally, I simply tried replacing line 12773 of org.el: (- (- org-tags-column) (length tags)))) with: (- (- (- org-tags-column) (length tags)) (* org-indent-indention-per-level level)))) Emacs just says: 'Symbol's value as variable is void: level'. I suspected something like that because 'level' and 'org-indent-indention-per-level' are from org-indent.el. Last time I did anything with Lisp was ten years ago. How can I use those variables in org.el?