<?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>WiredRevolution.com &#187; vim</title>
	<atom:link href="http://www.wiredrevolution.com/tag/vim/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wiredrevolution.com</link>
	<description>A Bit of Linux Wisdom</description>
	<lastBuildDate>Wed, 18 Jan 2012 22:45:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Enable the backspace key in VIM</title>
		<link>http://www.wiredrevolution.com/guides/enable-the-backspace-key-in-vim?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=enable-the-backspace-key-in-vim</link>
		<comments>http://www.wiredrevolution.com/guides/enable-the-backspace-key-in-vim#comments</comments>
		<pubDate>Tue, 13 Dec 2011 16:50:33 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[guides]]></category>
		<category><![CDATA[/etc/vimrc]]></category>
		<category><![CDATA[backspace]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[enable]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[vi]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[vimrc]]></category>

		<guid isPermaLink="false">http://www.wiredrevolution.com/?p=1907</guid>
		<description><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/linux_guide_icon.png" width="100" height="91" alt="" title="guides" /><br/>In some instances you may find that the default configuration of VIM has the backspace key disabled. Like many others I expect to be able to delete characters right-to-left like most other text editors. Unless you are doing some very minor editing, it quickly becomes a hassle to use the delete key. Luckily there is [...]


Related posts<ol><li><a href='http://www.wiredrevolution.com/ubuntu/enable-syntax-highlighting-in-vim-with-ubuntu' rel='bookmark' title='Permanent Link: Enable syntax highlighting in vim with Ubuntu'>Enable syntax highlighting in vim with Ubuntu</a></li>
<li><a href='http://www.wiredrevolution.com/gnome/fix-for-missing-title-bar-and-gnome-panel-with-firefox' rel='bookmark' title='Permanent Link: Fix for missing title bar and GNOME panel with Firefox'>Fix for missing title bar and GNOME panel with Firefox</a></li>
<li><a href='http://www.wiredrevolution.com/scripts/custom-screenrc-configuration-file' rel='bookmark' title='Permanent Link: Custom screenrc configuration file'>Custom screenrc configuration file</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/linux_guide_icon.png" width="100" height="91" alt="" title="guides" /><br/><p>In some instances you may find that the default configuration of VIM has the backspace key disabled. Like many others I expect to be able to delete characters right-to-left like most other text editors. Unless you are doing some very minor editing, it quickly becomes a hassle to use the delete key.</p>
<p>Luckily there is a quick fix. Add the following line to the <strong>.vimrc</strong> configuration file in your home directory:</p>
<p><code>set backspace=indent,eol,start</code></p>
<p>You can change for all users by placing this previous line in the <strong>/etc/vimrc</strong> configuration file.</p>


<p>Related posts<ol><li><a href='http://www.wiredrevolution.com/ubuntu/enable-syntax-highlighting-in-vim-with-ubuntu' rel='bookmark' title='Permanent Link: Enable syntax highlighting in vim with Ubuntu'>Enable syntax highlighting in vim with Ubuntu</a></li>
<li><a href='http://www.wiredrevolution.com/gnome/fix-for-missing-title-bar-and-gnome-panel-with-firefox' rel='bookmark' title='Permanent Link: Fix for missing title bar and GNOME panel with Firefox'>Fix for missing title bar and GNOME panel with Firefox</a></li>
<li><a href='http://www.wiredrevolution.com/scripts/custom-screenrc-configuration-file' rel='bookmark' title='Permanent Link: Custom screenrc configuration file'>Custom screenrc configuration file</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wiredrevolution.com/guides/enable-the-backspace-key-in-vim/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable syntax highlighting in vim with Ubuntu</title>
		<link>http://www.wiredrevolution.com/ubuntu/enable-syntax-highlighting-in-vim-with-ubuntu?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=enable-syntax-highlighting-in-vim-with-ubuntu</link>
		<comments>http://www.wiredrevolution.com/ubuntu/enable-syntax-highlighting-in-vim-with-ubuntu#comments</comments>
		<pubDate>Wed, 14 Jan 2009 14:34:16 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[syntax highlighting]]></category>
		<category><![CDATA[vi]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[vim.basic]]></category>
		<category><![CDATA[vim.tiny]]></category>
		<category><![CDATA[vimrc]]></category>

		<guid isPermaLink="false">http://www.wiredrevolution.com/?p=925</guid>
		<description><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/ubuntu_icon.png" width="80" height="78" alt="" title="ubuntu" /><br/>Many distributions have syntax highlighting in vim enabled with their default installation. In Ubuntu as well as other Debian based distributions, this is not the case. By default Ubuntu installs the vim-tiny package which does not support syntax highlighting or many other advanced features. You can see by following the chain of symlinks that in [...]


Related posts<ol><li><a href='http://www.wiredrevolution.com/guides/enable-the-backspace-key-in-vim' rel='bookmark' title='Permanent Link: Enable the backspace key in VIM'>Enable the backspace key in VIM</a></li>
<li><a href='http://www.wiredrevolution.com/ubuntu/add-new-fonts-to-your-ubuntu-system' rel='bookmark' title='Permanent Link: Add new fonts to your Ubuntu system'>Add new fonts to your Ubuntu system</a></li>
<li><a href='http://www.wiredrevolution.com/ubuntu/enable-hdmi-output-on-dell-xps-m1530m1330-with-ubuntu' rel='bookmark' title='Permanent Link: Enable HDMI output on Dell XPS M1530/M1330 with Ubuntu'>Enable HDMI output on Dell XPS M1530/M1330 with Ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/ubuntu_icon.png" width="80" height="78" alt="" title="ubuntu" /><br/><p>Many distributions have syntax highlighting in <strong>vim</strong> enabled with their default installation. In Ubuntu as well as other Debian based distributions, this is not the case. By default Ubuntu installs the <strong>vim-tiny</strong> package which does not support syntax highlighting or many other advanced features.</p>
<p>You can see by following the chain of symlinks that in the default installation vim calls vim.tiny.</p>
<pre>
$ which vim
</pre>
<pre>
/usr/bin/vim
</pre>
<p><strong>/usr/bin/vim -> /etc/alternatives/vim -> /usr/bin/vim.tiny</strong></p>
<p>If you want additional features including syntax highlighting you need to install the <strong>vim</strong> package.</p>
<pre>
$ sudo apt-get install vim
</pre>
<p>Now vim uses vim.basic which is what we want. This version supports all the advanced features.<br />
<strong>/usr/bin/vim -> /etc/alternatives/vim -> /usr/bin/vim.basic</strong></p>
<p>The last step is to actually enable syntax highlighting. </p>
<p>To enable it for a single session go into command mode and enter this command:</p>
<pre>
:syn on
</pre>
<p>Make these changes permanent for every vim session by opening or creating the <strong>.vimrc</strong> configuration file in your home directory.<br />
<strong>/home/username/.vimrc</strong></p>
<p>Insert the following lines.</p>
<pre>
if has ("syntax")
        syntax on
endif
</pre>


<p>Related posts<ol><li><a href='http://www.wiredrevolution.com/guides/enable-the-backspace-key-in-vim' rel='bookmark' title='Permanent Link: Enable the backspace key in VIM'>Enable the backspace key in VIM</a></li>
<li><a href='http://www.wiredrevolution.com/ubuntu/add-new-fonts-to-your-ubuntu-system' rel='bookmark' title='Permanent Link: Add new fonts to your Ubuntu system'>Add new fonts to your Ubuntu system</a></li>
<li><a href='http://www.wiredrevolution.com/ubuntu/enable-hdmi-output-on-dell-xps-m1530m1330-with-ubuntu' rel='bookmark' title='Permanent Link: Enable HDMI output on Dell XPS M1530/M1330 with Ubuntu'>Enable HDMI output on Dell XPS M1530/M1330 with Ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wiredrevolution.com/ubuntu/enable-syntax-highlighting-in-vim-with-ubuntu/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

