<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Atomized &#187; skeleton</title>
	<atom:link href="http://atomized.org/tag/skeleton/feed/" rel="self" type="application/rss+xml" />
	<link>http://atomized.org</link>
	<description>Fragmenting reality.</description>
	<lastBuildDate>Mon, 23 May 2011 23:46:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Disabling Python-mode’s skeletons</title>
		<link>http://atomized.org/2009/01/disabling-python-mode%e2%80%99s-skeletons/</link>
		<comments>http://atomized.org/2009/01/disabling-python-mode%e2%80%99s-skeletons/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 20:59:43 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[abbrev]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[lisp]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[skeleton]]></category>

		<guid isPermaLink="false">http://atomized.org/?p=498</guid>
		<description><![CDATA[One of the few things I dislike about Emacs 23 is the new behavior of python-mode. When you type things like def, it expands these into snippets using abbrev-mode. I don’t like this because I have similar functionality by way of yasnippet. I prefer the yasnippet way because it uses fields in the snippet. The [...]]]></description>
			<content:encoded><![CDATA[<p>One of the few things I dislike about <a href="/wp-content/cocoa-emacs-nightly">Emacs 23</a> is the new behavior of <code>python-mode</code>. When you type things like <code>def</code>, it expands these into snippets using <code>abbrev-mode</code>. I don’t like this because I have similar functionality by way of <a href="http://code.google.com/p/yasnippet/">yasnippet</a>.</p>
<p>I prefer the yasnippet way because it uses fields in the snippet. The default way prompts you for values in the minibuffer with <code>read-string</code>, which I dislike. It also overrides my preferred behavior, and there’s no option to disable it.</p>
<p>Of course, there’s always a way in Emacs, and it can be removed with this code:</p>
<pre language="lisp">
(let (python-mode-abbrev-table)
  (require 'python))
</pre>
<p>Which is simple and works, though I dislike it. I prefer to tweak behaviors with <code>eval-after-load</code>, since <code>require</code>s can be slow. Unfortunately, by the time that code executes, the damage is done.</p>
<p>I’ll update if I find a better way to fix it.</p>
]]></content:encoded>
			<wfw:commentRss>http://atomized.org/2009/01/disabling-python-mode%e2%80%99s-skeletons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

