<?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>littleforest &#187; Vim</title>
	<atom:link href="http://www.littleforest.co.uk/category/vim-unix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.littleforest.co.uk</link>
	<description>The littleforest Weblog</description>
	<lastBuildDate>Fri, 05 Nov 2010 08:01:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Remove Single Line HTML Comments using VIM</title>
		<link>http://www.littleforest.co.uk/vim-unix/remove-single-line-html-comments-using-vim/</link>
		<comments>http://www.littleforest.co.uk/vim-unix/remove-single-line-html-comments-using-vim/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 09:26:24 +0000</pubDate>
		<dc:creator>Richard Aldridge</dc:creator>
				<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=102</guid>
		<description><![CDATA[If you want to remove all HTML style comments (ones that span a single line), use the following VIM commands :
Check for all single line HTML comments in VIM :-
:g/&#60;!&#8211; .\{-}&#8211;&#62;/p
Typing the above displays all lines that contain HTML style comments
To remove all the comments use the following VIM command :-
:%s/&#60;!&#8211; .\{-}&#8211;&#62;//g
 
]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/vim-unix/remove-single-line-html-comments-using-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VIM Functions and Menu Items for Writing XSL</title>
		<link>http://www.littleforest.co.uk/vim-unix/vim-functions-and-menu-items-for-writing-xsl/</link>
		<comments>http://www.littleforest.co.uk/vim-unix/vim-functions-and-menu-items-for-writing-xsl/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 11:07:19 +0000</pubDate>
		<dc:creator>Richard Aldridge</dc:creator>
				<category><![CDATA[Vim]]></category>
		<category><![CDATA[XSL]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=100</guid>
		<description><![CDATA[Add the following lines to a myxsl.vim file and place it in your VIM plugins directory.
The next time you start VIM, you will have a menu called &#8220;lf&#8221; appear with the following items
listed that allow you to create more xsl code with less typing.
Note that you must also add the VIM utility functions listed in a [...]]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/vim-unix/vim-functions-and-menu-items-for-writing-xsl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VIM Toolkit Functions</title>
		<link>http://www.littleforest.co.uk/vim-unix/vim-toolkit-functions/</link>
		<comments>http://www.littleforest.co.uk/vim-unix/vim-toolkit-functions/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 08:27:41 +0000</pubDate>
		<dc:creator>Richard Aldridge</dc:creator>
				<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=94</guid>
		<description><![CDATA[General-purpose functions for building up more useful VIM scripts.
&#8221; Move the cursor up a line
func Up()
exe &#8220;normal k&#8221;
endf
&#8221; Move the cursor down a line
func Down()
exe &#8220;normal j&#8221;
endf
&#8221; Cut the selected buffer text to the windows clipboard
func! Cut()
exe &#8220;normal \&#8221;+x&#8221;
endf
&#8221; Copy the selected buffer text to the windows clipboard
func! Copy()
exe &#8220;normal \&#8221;+y&#8221;
endf
&#8221; Paste windows clipboard data [...]]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/vim-unix/vim-toolkit-functions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Split Up XML or HTML Elements in VIM</title>
		<link>http://www.littleforest.co.uk/vim-unix/split-up-xml-or-html-elements-in-vim/</link>
		<comments>http://www.littleforest.co.uk/vim-unix/split-up-xml-or-html-elements-in-vim/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 08:20:49 +0000</pubDate>
		<dc:creator>Richard Aldridge</dc:creator>
				<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=93</guid>
		<description><![CDATA[If there are multiple HTML or XML tags on one line, use the following command to split that data over several lines instead &#38; make it more readable :-
:%s/&#62;&#60;/&#62;\r&#60;/g
]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/vim-unix/split-up-xml-or-html-elements-in-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove DOS EOL Chars in VIM</title>
		<link>http://www.littleforest.co.uk/vim-unix/remove-dos-eol-chars-in-vim/</link>
		<comments>http://www.littleforest.co.uk/vim-unix/remove-dos-eol-chars-in-vim/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 08:18:10 +0000</pubDate>
		<dc:creator>Richard Aldridge</dc:creator>
				<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=92</guid>
		<description><![CDATA[Use the following command :-
:%s/\r//g
]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/vim-unix/remove-dos-eol-chars-in-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

