<?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>Cyber Sprocket Labs &#187; IDEs</title>
	<atom:link href="http://www.cybersprocket.com/category/ides/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cybersprocket.com</link>
	<description>Intelligent Software Solutions</description>
	<lastBuildDate>Tue, 31 Aug 2010 14:10:56 +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>Tab Completion for Custom Commands</title>
		<link>http://www.cybersprocket.com/2010/ides/tab-completion-for-custom-commands/</link>
		<comments>http://www.cybersprocket.com/2010/ides/tab-completion-for-custom-commands/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 18:38:16 +0000</pubDate>
		<dc:creator>EricR</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[IDEs]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[elisp]]></category>
		<category><![CDATA[lisp]]></category>
		<category><![CDATA[minibuffer]]></category>
		<category><![CDATA[org-mode]]></category>
		<category><![CDATA[tab]]></category>

		<guid isPermaLink="false">http://www.cybersprocket.com/?p=1220</guid>
		<description><![CDATA[A lot of commands in Emacs take input from the minibuffer, the little one-line area at the bottom of the editor. When you are writing your own commands you will often make use of the same facility. In this article I want to show you one way of doing that which will provide tab completion [...]


Related posts:<ol><li><a href='http://www.cybersprocket.com/2010/database/sql/emacs-sql-movement-commands/' rel='bookmark' title='Permanent Link: SQL Movement Commands'>SQL Movement Commands</a></li>
<li><a href='http://www.cybersprocket.com/2010/programming-languages/indent-on-save-maybe/' rel='bookmark' title='Permanent Link: Indent on Save, Maybe'>Indent on Save, Maybe</a></li>
<li><a href='http://www.cybersprocket.com/2010/programming-languages/php-programming-languages/real-time-php-error-messages-in-emacs/' rel='bookmark' title='Permanent Link: Real-Time PHP Error Messages in Emacs'>Real-Time PHP Error Messages in Emacs</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.cybersprocket.com/2010/ides/tab-completion-for-custom-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Real-Time PHP Error Messages in Emacs</title>
		<link>http://www.cybersprocket.com/2010/programming-languages/php-programming-languages/real-time-php-error-messages-in-emacs/</link>
		<comments>http://www.cybersprocket.com/2010/programming-languages/php-programming-languages/real-time-php-error-messages-in-emacs/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 15:11:30 +0000</pubDate>
		<dc:creator>EricR</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[IDEs]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.cybersprocket.com/?p=1210</guid>
		<description><![CDATA[I was frustrated yesterday while working on a project because of a bug caused by a syntax error. In the year 2010 we really should not be having bugs because of syntax. I say this not to blame anyone—in fact the syntax mistake was mine—but to make the point that this is not the type [...]


Related posts:<ol><li><a href='http://www.cybersprocket.com/2010/programming-languages/indent-on-save-maybe/' rel='bookmark' title='Permanent Link: Indent on Save, Maybe'>Indent on Save, Maybe</a></li>
<li><a href='http://www.cybersprocket.com/2010/ides/tab-completion-for-custom-commands/' rel='bookmark' title='Permanent Link: Tab Completion for Custom Commands'>Tab Completion for Custom Commands</a></li>
<li><a href='http://www.cybersprocket.com/2010/programming-languages/python/python-importing-packages/' rel='bookmark' title='Permanent Link: Python: Importing Packages'>Python: Importing Packages</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.cybersprocket.com/2010/programming-languages/php-programming-languages/real-time-php-error-messages-in-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indent on Save, Maybe</title>
		<link>http://www.cybersprocket.com/2010/programming-languages/indent-on-save-maybe/</link>
		<comments>http://www.cybersprocket.com/2010/programming-languages/indent-on-save-maybe/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 18:06:24 +0000</pubDate>
		<dc:creator>EricR</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[IDEs]]></category>
		<category><![CDATA[Programming Languages]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[elisp]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[indent]]></category>
		<category><![CDATA[lisp]]></category>
		<category><![CDATA[save]]></category>
		<category><![CDATA[visual studio]]></category>

		<guid isPermaLink="false">http://www.cybersprocket.com/?p=1211</guid>
		<description><![CDATA[While working on a .NET project, I have noticed that when I do many things, Visual Studio takes that time to re-indent large amounts of my code. But most of the time I’m writing it out in Emacs, so this makes my diffs a pain in the ass. But it got me to thinking about [...]


Related posts:<ol><li><a href='http://www.cybersprocket.com/2010/database/sql/emacs-sql-movement-commands/' rel='bookmark' title='Permanent Link: SQL Movement Commands'>SQL Movement Commands</a></li>
<li><a href='http://www.cybersprocket.com/2010/ides/tab-completion-for-custom-commands/' rel='bookmark' title='Permanent Link: Tab Completion for Custom Commands'>Tab Completion for Custom Commands</a></li>
<li><a href='http://www.cybersprocket.com/2010/programming-languages/php-programming-languages/real-time-php-error-messages-in-emacs/' rel='bookmark' title='Permanent Link: Real-Time PHP Error Messages in Emacs'>Real-Time PHP Error Messages in Emacs</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.cybersprocket.com/2010/programming-languages/indent-on-save-maybe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Movement Commands</title>
		<link>http://www.cybersprocket.com/2010/database/sql/emacs-sql-movement-commands/</link>
		<comments>http://www.cybersprocket.com/2010/database/sql/emacs-sql-movement-commands/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 19:56:55 +0000</pubDate>
		<dc:creator>EricR</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[IDEs]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[elisp]]></category>
		<category><![CDATA[lisp]]></category>

		<guid isPermaLink="false">http://www.cybersprocket.com/?p=989</guid>
		<description><![CDATA[Most programming modes in Emacs support two commands, beginning-of-defun and end-of-defun.  These move you to the beginning and end of the nearest function, and by default are bound to C-M-a and C-M-e, respectively. However, sql-mode does not have anything similar.  I have the above two commands bound to C-up and C-down for quickly moving around [...]


Related posts:<ol><li><a href='http://www.cybersprocket.com/2010/ides/tab-completion-for-custom-commands/' rel='bookmark' title='Permanent Link: Tab Completion for Custom Commands'>Tab Completion for Custom Commands</a></li>
<li><a href='http://www.cybersprocket.com/2010/programming-languages/indent-on-save-maybe/' rel='bookmark' title='Permanent Link: Indent on Save, Maybe'>Indent on Save, Maybe</a></li>
<li><a href='http://www.cybersprocket.com/2010/programming-languages/php-programming-languages/real-time-php-error-messages-in-emacs/' rel='bookmark' title='Permanent Link: Real-Time PHP Error Messages in Emacs'>Real-Time PHP Error Messages in Emacs</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.cybersprocket.com/2010/database/sql/emacs-sql-movement-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
