<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: How To Disable Indent-Tabs-Mode</title>
	<atom:link href="http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/feed/" rel="self" type="application/rss+xml" />
	<link>http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/</link>
	<description>Leveraging Perl and Emacs</description>
	<lastBuildDate>Tue, 07 May 2013 11:25:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Chris Lacher</title>
		<link>http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-9285</link>
		<dc:creator><![CDATA[Chris Lacher]]></dc:creator>
		<pubDate>Mon, 06 Aug 2012 20:19:15 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-9285</guid>
		<description><![CDATA[The set-hook idea helped me, &#039;cause I want to keep tabs as default but eliminate them in C/C++/Java code:

;; set the buffer-local variable indent-tabs-mode to nil, in C and C++                                               
(add-hook &#039;c-mode-common-hook    (lambda () (setq indent-tabs-mode nil)))]]></description>
		<content:encoded><![CDATA[<p>The set-hook idea helped me, &#8217;cause I want to keep tabs as default but eliminate them in C/C++/Java code:</p>
<p>;; set the buffer-local variable indent-tabs-mode to nil, in C and C++<br />
(add-hook &#8216;c-mode-common-hook    (lambda () (setq indent-tabs-mode nil)))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benno</title>
		<link>http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-8908</link>
		<dc:creator><![CDATA[Benno]]></dc:creator>
		<pubDate>Mon, 04 Apr 2011 04:59:59 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-8908</guid>
		<description><![CDATA[FWIW setq-default did not work for me (emacs on windows). set-default usually works fine on all my UNIX emacses.]]></description>
		<content:encoded><![CDATA[<p>FWIW setq-default did not work for me (emacs on windows). set-default usually works fine on all my UNIX emacses.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dexter</title>
		<link>http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-8760</link>
		<dc:creator><![CDATA[dexter]]></dc:creator>
		<pubDate>Wed, 12 Jan 2011 11:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-8760</guid>
		<description><![CDATA[Thanks
It works 
just what I need
But when I press a  ,it goes right few space blocks
then I press 
I hope emacs will delete the whole tab  block,not just delete one space by one .

I like this behavior, really, in VIM
Can anybody tell how to do it with .emacs?]]></description>
		<content:encoded><![CDATA[<p>Thanks<br />
It works<br />
just what I need<br />
But when I press a  ,it goes right few space blocks<br />
then I press<br />
I hope emacs will delete the whole tab  block,not just delete one space by one .</p>
<p>I like this behavior, really, in VIM<br />
Can anybody tell how to do it with .emacs?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cecil</title>
		<link>http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-7832</link>
		<dc:creator><![CDATA[Cecil]]></dc:creator>
		<pubDate>Thu, 21 Jan 2010 19:55:56 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-7832</guid>
		<description><![CDATA[Hello Jared:
I don&#039;t know where were my manners! I came back to your post via a google search today. I don&#039;t know why I didn&#039;t reply to your suggestion, but thanks, it works, and all the best for the new year!]]></description>
		<content:encoded><![CDATA[<p>Hello Jared:<br />
I don&#8217;t know where were my manners! I came back to your post via a google search today. I don&#8217;t know why I didn&#8217;t reply to your suggestion, but thanks, it works, and all the best for the new year!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-7660</link>
		<dc:creator><![CDATA[Jared]]></dc:creator>
		<pubDate>Thu, 11 Jun 2009 21:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-7660</guid>
		<description><![CDATA[Hi Cecil,

If you want a single tab character, use C-q &lt;TAB&gt;.  If you want to re-enable it for new buffers, put (setq-default indent-tabs-mode t) in the *scratch* buffer and the do C-x C-e to execute it.  Or you could use M-x eval-expression instead.  Let me know if that works for you.]]></description>
		<content:encoded><![CDATA[<p>Hi Cecil,</p>
<p>If you want a single tab character, use C-q &lt;TAB&gt;.  If you want to re-enable it for new buffers, put (setq-default indent-tabs-mode t) in the *scratch* buffer and the do C-x C-e to execute it.  Or you could use M-x eval-expression instead.  Let me know if that works for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cecil</title>
		<link>http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-7653</link>
		<dc:creator><![CDATA[Cecil]]></dc:creator>
		<pubDate>Wed, 10 Jun 2009 20:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-7653</guid>
		<description><![CDATA[Any idea how to re-enable tabs from within emacs. I have (setq-default indent-tabs-mode nil) in my .emacs which is fine 98% of the time, but sometimes I actually need tabs which means quiting emacs, commenting out the line in my .emacs, editing the file, the uncommenting it in my .emacs when I&#039;m done. Is there any way to temporarily disable it while within emacs? So far I&#039;ve had no luck finding an answer with google.
Thanks.]]></description>
		<content:encoded><![CDATA[<p>Any idea how to re-enable tabs from within emacs. I have (setq-default indent-tabs-mode nil) in my .emacs which is fine 98% of the time, but sometimes I actually need tabs which means quiting emacs, commenting out the line in my .emacs, editing the file, the uncommenting it in my .emacs when I&#8217;m done. Is there any way to temporarily disable it while within emacs? So far I&#8217;ve had no luck finding an answer with google.<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-7206</link>
		<dc:creator><![CDATA[Jared]]></dc:creator>
		<pubDate>Sun, 25 Jan 2009 11:40:10 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-7206</guid>
		<description><![CDATA[Thanks for the tip Ron.  I&#039;ve updated the post.]]></description>
		<content:encoded><![CDATA[<p>Thanks for the tip Ron.  I&#8217;ve updated the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron</title>
		<link>http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-7205</link>
		<dc:creator><![CDATA[Ron]]></dc:creator>
		<pubDate>Sat, 24 Jan 2009 21:02:03 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/01/24/how-to-disable-ident-tabs-mode/#comment-7205</guid>
		<description><![CDATA[(setq-default indent-tabs-mode nil)  in .emacs  ?

Works for me.]]></description>
		<content:encoded><![CDATA[<p>(setq-default indent-tabs-mode nil)  in .emacs  ?</p>
<p>Works for me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
