<?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>rlucas.net: The Next Generation &#187; tools</title>
	<atom:link href="http://blog.rlucas.net/category/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.rlucas.net</link>
	<description>...fighting entropy one financing round at a time</description>
	<lastBuildDate>Wed, 10 Aug 2011 16:04:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Vim 7 is Incompatible with the Vimspell Plugin</title>
		<link>http://blog.rlucas.net/tools/vim_7_vimspell_munging/</link>
		<comments>http://blog.rlucas.net/tools/vim_7_vimspell_munging/#comments</comments>
		<pubDate>Tue, 11 Jul 2006 07:00:00 +0000</pubDate>
		<dc:creator>rlucas</dc:creator>
				<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.rlucas.net/wp/uncategorized/vim_7_vimspell_munging/</guid>
		<description><![CDATA[On my Cygwin environment on Win XP, Vim 7 appears to run fine with one exception: the vimspell.vim plugin. It apepars that Vimspell conflicts with the new built-in spell check functionality in Vim 7. The symptom of this is that one starts to type and a massive amount of doubled or missed letters start to [...]]]></description>
			<content:encoded><![CDATA[<p>  On my Cygwin environment on Win XP, Vim 7 appears to run fine with one exception: the vimspell.vim plugin.  It apepars that Vimspell conflicts with the new built-in spell check functionality in Vim 7.  The symptom of this is that one starts to type and a massive amount of doubled or missed letters start to appear (and, no, I was not drunk when I noticed this).  Removing the vimspell.vim plugin works fine. </p>
<p> However, I like to use a consistent ~/.vim directory across all my shells, so that I can store it in CVS and enjoy the same settings on every system.  To do this across a heterogeneous environment of Vim 6 and Vim 7 boxen, I have made the following change to vimspell.vim: </p>
<blockquote><pre>61c61 &lt; if exists("loaded_vimspell") || &amp;compatible --- &gt; if exists("loaded_vimspell") || &amp;compatible || v:version &gt;= 700  </pre>
</blockquote>
<p> This will short-circuit out of vimspell before it gets loading if the version is Vim 7.0 or above. </p></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rlucas.net/tools/vim_7_vimspell_munging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook to Remind (out2rem) Converter Script v0.0.1</title>
		<link>http://blog.rlucas.net/tools/outlook_to_remind_001/</link>
		<comments>http://blog.rlucas.net/tools/outlook_to_remind_001/#comments</comments>
		<pubDate>Mon, 26 Jun 2006 07:00:00 +0000</pubDate>
		<dc:creator>rlucas</dc:creator>
				<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.rlucas.net/wp/uncategorized/outlook_to_remind_001/</guid>
		<description><![CDATA[Update: I have fixed some stuff (time format and placement of AT keyword) and have posted v0.0.2 at the link below. Please find here a short Perl script to dump out your Microsoft Outlook appointments in Remind format. This should be useful to those of you who, like me, are tracking the whole plaintext / [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update:</strong> I have fixed some stuff (time format and placement of AT keyword) and have posted v0.0.2 at the link below.</p>
<p>Please find <a href="http://rlucas.net/out2rem-0_0_2.txt">here</a> a short Perl script to dump out your Microsoft Outlook appointments in <a href="http://wiki.43folders.com/index.php/Remind_FAQ">Remind</a> format.</p>
<p>This should be useful to those of you who, like me, are tracking the whole plaintext / console / CLI resurgence as indicated <a href="http://www.43folders.com/2005/02/24/guest-mike-harris-looks-at-remind/">here</a> among other places.</p>
<p>If you have suggestions, please drop me an email at rlucas at tercent.com, and / or add helpful notes to the <a href="http://wiki.43folders.com/index.php/Remind">43Folders Wiki</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rlucas.net/tools/outlook_to_remind_001/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Vim 7.0 Delights and Amazes with Beautified Auto-completion</title>
		<link>http://blog.rlucas.net/tools/vim_seven_delights_and_amazes_with_auto_completion/</link>
		<comments>http://blog.rlucas.net/tools/vim_seven_delights_and_amazes_with_auto_completion/#comments</comments>
		<pubDate>Wed, 21 Jun 2006 07:00:00 +0000</pubDate>
		<dc:creator>rlucas</dc:creator>
				<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.rlucas.net/wp/uncategorized/vim_seven_delights_and_amazes_with_auto_completion/</guid>
		<description><![CDATA[Randall Lucas 2006-06-21 Vim, the text editor extraordinaire, came out with version 7.0 last month. At some point, unwittingly, I had updated my work computer &#8212; Cygwin under Windows XP &#8212; using the Cygwin setup.exe file, not expecting any major version number changes. Hence, I didn&#8217;t even realize that Vim 7 was now on my [...]]]></description>
			<content:encoded><![CDATA[<p> Randall Lucas 2006-06-21 </p>
<p> <a href="http://blog.rlucas.net//www.vim.org/">Vim</a>, the text editor extraordinaire, came out with version 7.0 last month.  At some point, unwittingly, I had updated my work computer &#8212; Cygwin under Windows XP &#8212; using the Cygwin setup.exe file, not expecting any major version number changes.  Hence, I didn&#8217;t even realize that Vim 7 was now on my machine. </p>
<p> This morning, I was doing as I normally do in writing a document with many recurrences of the same word &#8212; &#8220;ctrl-N&#8221; to cycle through possible completions of the word &#8212; when  <em>an odd grey-and-purple blob appeared below my cursor, filled with words!</em> Unsettled, I lifted my fingers from the keys &#8212; what was this colorized monstrosity? </p>
<p> And then I realized.  Vim was giving me &#8220;tool tips.&#8221;  Here, in a console window, using naught but VT100 control codes.  Jaded IDE addicts will say: &#8220;sure, but my GUI IDE has had those for years.&#8221;  Perhaps.  But I can use my tool tips in a German cybercafe, over an SSH session from a Danger Hiptop, or over a serial line in a generic data center. </p>
<p> For Perl, populating the tool tips with syntactically valid items (method names, operators, etc.) will be hard, at least according to the conventional notion that &#8220;only perl can parse Perl.&#8221;  But, for Ruby, Python, and, should the need arise, C or Java, adding syntax-awareness (see &#8220;:help complete-items&#8221;) should be just an exercise in glue coding. </p>
<p> If you manipulate text (and if you aren&#8217;t already an adept of another <a href="http://blog.rlucas.net//www.gnu.org/software/emacs/">cult</a> <a href="http://blog.rlucas.net//www.barebones.com/products/bbedit/">editor</a>), then by all means <a href="http://blog.rlucas.net//www.vim.org/download.php">get Vim</a>! </p></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rlucas.net/tools/vim_seven_delights_and_amazes_with_auto_completion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

