From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Dunsmore Subject: Re: Tags not lining up in org-indent-mode Date: Thu, 22 Apr 2010 14:07:47 -0500 Message-ID: <87fx2nnw58.fsf@riotblast.dunsmor.com> References: <87r5maostn.fsf@riotblast.dunsmor.com> 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 1O51ke-0003wH-Vj for emacs-orgmode@gnu.org; Thu, 22 Apr 2010 15:07:53 -0400 Received: from [140.186.70.92] (port=36987 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O51kd-0003vD-G8 for emacs-orgmode@gnu.org; Thu, 22 Apr 2010 15:07:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O51kc-0001Yd-4Y for emacs-orgmode@gnu.org; Thu, 22 Apr 2010 15:07:51 -0400 Received: from deathroller.dunsmor.com ([98.129.169.48]:50874) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O51kc-0001YP-06 for emacs-orgmode@gnu.org; Thu, 22 Apr 2010 15:07:50 -0400 Received: from riotblast.dunsmor.com (67-198-71-121.dyn.grandenetworks.net [67.198.71.121]) by deathroller.dunsmor.com (Postfix) with ESMTP id 40C1D8C0EC for ; Thu, 22 Apr 2010 14:07:48 -0500 (CDT) In-Reply-To: <87r5maostn.fsf@riotblast.dunsmor.com> (Jason Dunsmore's message of "Tue, 20 Apr 2010 13:57:24 -0500") 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 I figured out how to keep tabs from being used to align tags. The solution is to set indent-tabs-mode to nil locally for org-mode. I believe the following patch should fix this issue. --8<---------------cut here---------------start------------->8--- index c875472..1d10754 100644 --- a/lisp/org-indent.el +++ b/lisp/org-indent.el @@ -131,6 +131,7 @@ FIXME: How to update when broken?" (setq org-indent-mode nil) (if org-indent-mode (progn + (org-set-local 'indent-tabs-mode nil) (or org-indent-strings (org-indent-initialize)) (when org-indent-mode-turns-off-org-adapt-indentation (org-set-local 'org-adapt-indentation nil)) --8<---------------cut here---------------end--------------->8--- Regards, Jason