<?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>Derek Wyatt&#039;s Blog</title>
	<atom:link href="http://www.derekwyatt.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.derekwyatt.org</link>
	<description>Vim, OO Design and Piles of Uselessness</description>
	<lastBuildDate>Mon, 11 Jan 2010 20:33:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>It&#8217;s been a while&#8230;</title>
		<link>http://www.derekwyatt.org/2010/01/10/its-been-a-while/</link>
		<comments>http://www.derekwyatt.org/2010/01/10/its-been-a-while/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 14:19:48 +0000</pubDate>
		<dc:creator>Derek Wyatt</dc:creator>
				<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.derekwyatt.org/2010/01/10/its-been-a-while/</guid>
		<description><![CDATA[I&#8217;ve had a number of people ask me when my next Vim Video is going to go online&#8230; I know it&#8217;s been a while since I put one up, and unfortunately it&#8217;s going to be a while longer.
Work has picked up in the last little while and on top of that, I&#8217;m buying a new [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had a number of people ask me when my next <a href="/vim/vim-tutorial-videos/">Vim Video</a> is going to go online&#8230; I know it&#8217;s been a while since I put one up, and unfortunately it&#8217;s going to be a while longer.</p>
<p>Work has picked up in the last little while and on top of that, I&#8217;m buying a new house and am preparing for the move.  After the move finishes I should be able to do another one.  The only real problem is that the new videos are going to be of the intermediate and advanced quality and those take a lot more thought and time :)</p>
<p>I appreciate all the great responses, encouragement and all the interest!  Keep reading those help files and stay tuned&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekwyatt.org/2010/01/10/its-been-a-while/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Changing settings / options based on filetype in Vim</title>
		<link>http://www.derekwyatt.org/2009/11/01/changing-settings-options-based-on-filetype-in-vim/</link>
		<comments>http://www.derekwyatt.org/2009/11/01/changing-settings-options-based-on-filetype-in-vim/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 06:16:59 +0000</pubDate>
		<dc:creator>Derek Wyatt</dc:creator>
				<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.derekwyatt.org/2009/11/01/changing-settings-options-based-on-filetype-in-vim/</guid>
		<description><![CDATA[If you want to change settings / options based on the filetype there are a couple of ways you can do it.
Using an Autocommand
You can do this with an autocmd in your vimrc.  Let&#8217;s assume you want to change some of the indenting rules for perl and html.

augroup indent_settings
    au!
  [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to change settings / options based on the <a href="http://vimdoc.sourceforge.net/htmldoc/filetype.html#filetype.txt">filetype</a> there are a couple of ways you can do it.</p>
<h2>Using an Autocommand</h2>
<p>You can do this with an <a href="http://vimdoc.sourceforge.net/htmldoc/autocmd.html#autocmd.txt">autocmd</a> in your <a href="http://vimdoc.sourceforge.net/htmldoc/starting.html#vimrc">vimrc</a>.  Let&#8217;s assume you want to change some of the <a href="http://vimdoc.sourceforge.net/htmldoc/indent.html#indent.txt">indenting</a> rules for <a href="http://www.perl.org/">perl</a> and <a href="http://en.wikipedia.org/wiki/HTML">html</a>.</p>
<pre>
augroup indent_settings
    au!
    au BufEnter *.pl setl autoindent smartindent
    au BufEnter *.html setl noautoindent nosmartindent
augroup END
</pre>
<p>The above will do a <a href="http://vimdoc.sourceforge.net/htmldoc/options.html#:setlocal">setlocal</a> when entering a perl or html file.  It will turn <a href="http://vimdoc.sourceforge.net/htmldoc/options.html#'autoindent'">autoindent</a> to &#8216;on&#8217; and <a href="http://vimdoc.sourceforge.net/htmldoc/options.html#'smartindent'">smartindent</a> to &#8216;on&#8217; when you enter a <a href="http://vimdoc.sourceforge.net/htmldoc/windows.html#buffers">buffer</a> containing a perl file, and will turn them off when entering a buffer containing an html file.</p>
<h2>Dropping the commands in a filetype file</h2>
<p>You can also choose to organize things into separate <a href="http://vimdoc.sourceforge.net/htmldoc/usr_41.html#ftplugin">ftplugin</a> files in your <a href="http://vimdoc.sourceforge.net/htmldoc/options.html#'runtimepath'">runtime directory</a>.  If we want to continue with the perl and html examples above, you would do the following:</p>
<p>In <code>ftplugin/perl.vim</code>:</p>
<pre>
setl autoindent
setl smartindent
</pre>
<p>In <code>ftplugin/html.vim</code>:</p>
<pre>
setl noautoindent
setl nosmartindent
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.derekwyatt.org/2009/11/01/changing-settings-options-based-on-filetype-in-vim/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Insert Mode Video now Online</title>
		<link>http://www.derekwyatt.org/2009/10/18/insert-mode-video-now-online/</link>
		<comments>http://www.derekwyatt.org/2009/10/18/insert-mode-video-now-online/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 20:09:55 +0000</pubDate>
		<dc:creator>Derek Wyatt</dc:creator>
				<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.derekwyatt.org/2009/10/18/insert-mode-video-now-online/</guid>
		<description><![CDATA[I&#8217;ve managed to throw together a video on Insert Mode today.  I&#8217;m not supremely happy with this one&#8230; it was a bit rushed as I only had a short amount of time between the moments when my daughter pulls on my pant-leg asking me to do &#8220;something&#8221;.
I may redo this one, not sure yet [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve managed to throw together a video on <a href="/vim/vim-tutorial-videos/vim-intermediate-tutorial-videos/#insert-mode">Insert Mode</a> today.  I&#8217;m not supremely happy with this one&#8230; it was a bit rushed as I only had a short amount of time between the moments when my daughter pulls on my pant-leg asking me to do &#8220;something&#8221;.</p>
<p>I may redo this one, not sure yet &#8211; it&#8217;ll just depend on how much time I&#8217;ve got.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekwyatt.org/2009/10/18/insert-mode-video-now-online/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Vim Modes Introduction Video is Online</title>
		<link>http://www.derekwyatt.org/2009/10/18/vim-modes-introduction-video-is-online/</link>
		<comments>http://www.derekwyatt.org/2009/10/18/vim-modes-introduction-video-is-online/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 15:44:43 +0000</pubDate>
		<dc:creator>Derek Wyatt</dc:creator>
				<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.derekwyatt.org/2009/10/18/vim-modes-introduction-video-is-online/</guid>
		<description><![CDATA[I&#8217;ve managed to cobble together a video that introduces Vim&#8217;s modes.
Have a look at it right here.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve managed to cobble together a video that introduces <a href="http://vimdoc.sourceforge.net/htmldoc/intro.html#vim-modes">Vim&#8217;s modes</a>.</p>
<p><a href="/vim/vim-tutorial-videos/vim-intermediate-tutorial-videos/#modes-intro">Have a look at it right here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekwyatt.org/2009/10/18/vim-modes-introduction-video-is-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The EigenHarp &#8211; Holy Friggin&#8217; Hell!</title>
		<link>http://www.derekwyatt.org/2009/10/17/the-eigenharp-holy-friggin-hell/</link>
		<comments>http://www.derekwyatt.org/2009/10/17/the-eigenharp-holy-friggin-hell/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 21:47:13 +0000</pubDate>
		<dc:creator>Derek Wyatt</dc:creator>
				<category><![CDATA[Vim]]></category>
		<category><![CDATA[EWI]]></category>

		<guid isPermaLink="false">http://www.derekwyatt.org/2009/10/17/the-eigenharp-holy-friggin-hell/</guid>
		<description><![CDATA[I just happened to see this story at engadget and dug a little deeper to find the EigenHarp at EigenLabs. This is possibly the coolest friggin&#8217; MIDI Controller (almost) on the market today. It&#8217;s ridiculously expensive &#8211; way out of my price range at close to $7000 (it is just a controller after all &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>I just happened to see <a href="http://www.engadget.com/2009/09/11/video-mysterious-eigenharp-offers-blinkenlight-sitar-looks-chi/"  alt="this story at engadget">this story at engadget</a> and dug a little deeper to find the <a href="http://www.eigenlabs.com/"  alt="">EigenHarp at EigenLabs</a>. This is possibly the coolest friggin&#8217; <a href="http://en.wikipedia.org/wiki/Midi_controller"  alt="MIDI Controller">MIDI Controller</a> (almost) on the market today. It&#8217;s ridiculously expensive &#8211; <i>way</i> out of my price range at close to $7000 (it is just a controller after all &#8211; you still gotta have a computer and some soft synths, I believe) but that doesn&#8217;t diminish it&#8217;s complete and utter coolness!</p>
<p>I play an <a href="http://www.akaipro.com/ewi4000s"  alt="EWI 4000s">EWI 4000s</a> which is a wicked cool super powerhouse MIDI Controller, but compred to the <a href="http://www.eigenlabs.com/"  alt="">EigenHarp</a> it looks like it was invented over 20 years ago (which it was :D). The EigenHarp is like some sort of psychedelic <a href="http://en.wikipedia.org/wiki/Bassoon"  alt="Bassoon">Bassoon</a> with its LEDs, tons of keys, and insane levels of control &#8211; well, it&#8217;s just a beast of a controller. </p>
<p>I can&#8217;t wait to see what happens with this thing over the next few years. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekwyatt.org/2009/10/17/the-eigenharp-holy-friggin-hell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The vimrc File and Vim Runtime Directories Video is Online</title>
		<link>http://www.derekwyatt.org/2009/10/16/the-vimrc-file-and-vim-runtime-directories-video-is-online/</link>
		<comments>http://www.derekwyatt.org/2009/10/16/the-vimrc-file-and-vim-runtime-directories-video-is-online/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 06:57:19 +0000</pubDate>
		<dc:creator>Derek Wyatt</dc:creator>
				<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.derekwyatt.org/2009/10/16/the-vimrc-file-and-vim-runtime-directories-video-is-online/</guid>
		<description><![CDATA[I put up a new video that describes the vimrc and the Vim runtime directories.
You can have a look right here.
]]></description>
			<content:encoded><![CDATA[<p>I put up a new video that describes the <a href="http://vimdoc.sourceforge.net/htmldoc/starting.html#vimrc">vimrc</a> and the Vim <a href="http://vimdoc.sourceforge.net/htmldoc/options.html#'runtimepath'">runtime</a> directories.</p>
<p>You can have a look <a href="/vim/vim-tutorial-videos/vim-intermediate-tutorial-videos/#vimrc">right here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekwyatt.org/2009/10/16/the-vimrc-file-and-vim-runtime-directories-video-is-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use the Vim Help System is Online</title>
		<link>http://www.derekwyatt.org/2009/10/12/how-to-use-the-vim-help-system-is-online/</link>
		<comments>http://www.derekwyatt.org/2009/10/12/how-to-use-the-vim-help-system-is-online/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 05:09:59 +0000</pubDate>
		<dc:creator>Derek Wyatt</dc:creator>
				<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.derekwyatt.org/2009/10/12/how-to-use-the-vim-help-system-is-online/</guid>
		<description><![CDATA[How to use the Help System is now online, and I think this may finish off the &#8220;Novice&#8221; set of videos.  We&#8217;ve done a lot of good work moving forward with &#8220;How to use Vim&#8221;, and this video will give you some assistance with helping yourself using Vim&#8217;s superb help system.
I think the next [...]]]></description>
			<content:encoded><![CDATA[<p><a href="/vim/vim-tutorial-videos/vim-novice-tutorial-videos#Help">How to use the Help System</a> is now online, and I think this may finish off the <a href="/vim/vim-tutorial-videos/vim-novice-tutorial-videos/">&#8220;Novice&#8221;</a> set of videos.  We&#8217;ve done a lot of good work moving forward with &#8220;How to use Vim&#8221;, and this video will give you some assistance with helping yourself using Vim&#8217;s <a href="http://vimdoc.sourceforge.net/">superb help system</a>.</p>
<p>I think the next video on the agenda will cover the <a href="http://vimdoc.sourceforge.net/htmldoc/options.html#'runtimepath'">runtime</a> directory so that we can start dealing with <a href="http://vimdoc.sourceforge.net/htmldoc/usr_05.html#plugin">plugins</a> and customization a bit better before we dive back in to some more esoteric editing concepts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekwyatt.org/2009/10/12/how-to-use-the-vim-help-system-is-online/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Food Inc</title>
		<link>http://www.derekwyatt.org/2009/10/12/food-inc/</link>
		<comments>http://www.derekwyatt.org/2009/10/12/food-inc/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 21:04:58 +0000</pubDate>
		<dc:creator>Derek Wyatt</dc:creator>
		
		<guid isPermaLink="false">http://www.derekwyatt.org/2009/10/12/food-inc/</guid>
		<description><![CDATA[Go watch Food Inc.  You&#8217;ve got 90 minutes to spare&#8230; do it.
]]></description>
			<content:encoded><![CDATA[<p>Go watch <a href="http://www.takepart.com/foodinc/">Food Inc</a>.  You&#8217;ve got 90 minutes to spare&#8230; do it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekwyatt.org/2009/10/12/food-inc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Updated the vimrc Stuff</title>
		<link>http://www.derekwyatt.org/2009/10/11/updated-the-vimrc-stuff/</link>
		<comments>http://www.derekwyatt.org/2009/10/11/updated-the-vimrc-stuff/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 19:47:40 +0000</pubDate>
		<dc:creator>Derek Wyatt</dc:creator>
				<category><![CDATA[This Site]]></category>
		<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.derekwyatt.org/2009/10/11/updated-the-vimrc-stuff/</guid>
		<description><![CDATA[I&#8217;ve just made a few updates to the vimrc section of this site to describe a bit more about what the vimrc is, where it can be found, etc&#8230; As well, I updated the bare minimum to include &#8216;wildmenu&#8217; &#8211; an absolute must!
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just made a few updates to the <a href="/vim/the-vimrc-file/">vimrc</a> section of this site to describe a bit more about what the vimrc is, where it can be found, etc&#8230; As well, I updated the bare minimum to include <a href="http://vimdoc.sourceforge.net/htmldoc/options.html#'wildmenu'">&#8216;wildmenu&#8217;</a> &#8211; an absolute must!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekwyatt.org/2009/10/11/updated-the-vimrc-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Welcome to Vim&#8221; video is online</title>
		<link>http://www.derekwyatt.org/2009/10/10/welcome-to-vim-video-is-online/</link>
		<comments>http://www.derekwyatt.org/2009/10/10/welcome-to-vim-video-is-online/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 20:58:58 +0000</pubDate>
		<dc:creator>Derek Wyatt</dc:creator>
				<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.derekwyatt.org/2009/10/10/welcome-to-vim-video-is-online/</guid>
		<description><![CDATA[Well, it took quite a while but I&#8217;ve finally made the Novice Tutorial Prequel &#8211; Welcome to Vim.  For most of you this won&#8217;t be very informative but I really felt that these Novice videos needed a true introduction, and this is it :) 
]]></description>
			<content:encoded><![CDATA[<p>Well, it took quite a while but I&#8217;ve finally made the Novice Tutorial Prequel &#8211; <a href="http://www.derekwyatt.org/vim/vim-tutorial-videos/vim-novice-tutorial-videos/#Welcome">Welcome to Vim</a>.  For most of you this won&#8217;t be very informative but I really felt that these Novice videos needed a true introduction, and this is it :) </p>
]]></content:encoded>
			<wfw:commentRss>http://www.derekwyatt.org/2009/10/10/welcome-to-vim-video-is-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
