<?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: Customizing Dabbrev</title>
	<atom:link href="http://curiousprogrammer.wordpress.com/2009/05/19/customiz-dabbrev/feed/" rel="self" type="application/rss+xml" />
	<link>http://curiousprogrammer.wordpress.com/2009/05/19/customiz-dabbrev/</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: Jared</title>
		<link>http://curiousprogrammer.wordpress.com/2009/05/19/customiz-dabbrev/#comment-7571</link>
		<dc:creator><![CDATA[Jared]]></dc:creator>
		<pubDate>Fri, 22 May 2009 21:59:09 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=616#comment-7571</guid>
		<description><![CDATA[Hi Zhangda, do you mean the autocomplete framework?  Yes I used it for about 4 weeks before I decided that, while it is prettier than standard dabbrev, it doesn&#039;t provide any advantage and provides some disadvantages, e.g. in the minibuffer.]]></description>
		<content:encoded><![CDATA[<p>Hi Zhangda, do you mean the autocomplete framework?  Yes I used it for about 4 weeks before I decided that, while it is prettier than standard dabbrev, it doesn&#8217;t provide any advantage and provides some disadvantages, e.g. in the minibuffer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zhangda</title>
		<link>http://curiousprogrammer.wordpress.com/2009/05/19/customiz-dabbrev/#comment-7570</link>
		<dc:creator><![CDATA[zhangda]]></dc:creator>
		<pubDate>Fri, 22 May 2009 21:43:19 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=616#comment-7570</guid>
		<description><![CDATA[I wonder did you try the package auto-completion?]]></description>
		<content:encoded><![CDATA[<p>I wonder did you try the package auto-completion?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://curiousprogrammer.wordpress.com/2009/05/19/customiz-dabbrev/#comment-7557</link>
		<dc:creator><![CDATA[Jared]]></dc:creator>
		<pubDate>Tue, 19 May 2009 21:46:15 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=616#comment-7557</guid>
		<description><![CDATA[@Billy - drat - you&#039;re right.  I was careless in my editing earlier.  The first regex should have omitted the [^ ]* part as we only need to ignore = and *.  Thanks for pointing that out - I&#039;ve corrected the post.

I&#039;ve also amended your comment to make it clearer you were quoting my post.  I hope that&#039;s okay.

@Trey - I tried out hippie-expand briefly but didn&#039;t find it a huge step up from dabbrev.  Are there compelling advantages or is it just that I&#039;m used to the way dabbrev expands things?]]></description>
		<content:encoded><![CDATA[<p>@Billy &#8211; drat &#8211; you&#8217;re right.  I was careless in my editing earlier.  The first regex should have omitted the [^ ]* part as we only need to ignore = and *.  Thanks for pointing that out &#8211; I&#8217;ve corrected the post.</p>
<p>I&#8217;ve also amended your comment to make it clearer you were quoting my post.  I hope that&#8217;s okay.</p>
<p>@Trey &#8211; I tried out hippie-expand briefly but didn&#8217;t find it a huge step up from dabbrev.  Are there compelling advantages or is it just that I&#8217;m used to the way dabbrev expands things?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trey Jackson</title>
		<link>http://curiousprogrammer.wordpress.com/2009/05/19/customiz-dabbrev/#comment-7556</link>
		<dc:creator><![CDATA[Trey Jackson]]></dc:creator>
		<pubDate>Tue, 19 May 2009 18:56:58 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=616#comment-7556</guid>
		<description><![CDATA[I&#039;d forgotten about that variable.  FYI, if you want to use hippie-expand, you can do something similar - I just wrote about it on my blog here: http://trey-jackson.blogspot.com/2009/05/emacs-tip-29-customizing-hippe-expand.html]]></description>
		<content:encoded><![CDATA[<p>I&#8217;d forgotten about that variable.  FYI, if you want to use hippie-expand, you can do something similar &#8211; I just wrote about it on my blog here: <a href="http://trey-jackson.blogspot.com/2009/05/emacs-tip-29-customizing-hippe-expand.html" rel="nofollow">http://trey-jackson.blogspot.com/2009/05/emacs-tip-29-customizing-hippe-expand.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Billy</title>
		<link>http://curiousprogrammer.wordpress.com/2009/05/19/customiz-dabbrev/#comment-7555</link>
		<dc:creator><![CDATA[Billy]]></dc:creator>
		<pubDate>Tue, 19 May 2009 12:35:55 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=616#comment-7555</guid>
		<description><![CDATA[&lt;blockquote&gt;
The way to fix this behaviour is by setting dabbrev-abbrev-skip-leading-regexp

(setq dabbrev-abbrev-skip-leading-regexp &quot;[^ ]*[=*]&quot;)

Okay, you think, this doesn’t affect me – I don’t use muse (why not?) How about if you’re writing some html/xml.

(setq dabbrev-abbrev-skip-leading-regexp &quot;[^ ]*[=*]&quot;)
&lt;/blockquote&gt;

Huh? The two setq are identical, no?]]></description>
		<content:encoded><![CDATA[<blockquote><p>
The way to fix this behaviour is by setting dabbrev-abbrev-skip-leading-regexp</p>
<p>(setq dabbrev-abbrev-skip-leading-regexp &#8220;[^ ]*[=*]&#8220;)</p>
<p>Okay, you think, this doesn’t affect me – I don’t use muse (why not?) How about if you’re writing some html/xml.</p>
<p>(setq dabbrev-abbrev-skip-leading-regexp &#8220;[^ ]*[=*]&#8220;)
</p></blockquote>
<p>Huh? The two setq are identical, no?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
