<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Vim &#8211; a first</title>
	<atom:link href="http://www.tamba2.org.uk/T2/2005/12/15/vim-a-first/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tamba2.org.uk/T2/2005/12/15/vim-a-first/</link>
	<description>Eclectic.</description>
	<lastBuildDate>Sat, 16 Jul 2011 06:53:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: shorty114</title>
		<link>http://www.tamba2.org.uk/T2/2005/12/15/vim-a-first/comment-page-1/#comment-6828</link>
		<dc:creator>shorty114</dc:creator>
		<pubDate>Sat, 17 Dec 2005 18:16:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.tamba2.org.uk/T2/archives/2005/12/15/vim-a-first/#comment-6828</guid>
		<description>@Gregory: Try GVim (on vim.org I believe) - not as GUI as SubEthaEdit or the like, but an improvement.

Whatever you do, don&#039;t switch to Emacs...</description>
		<content:encoded><![CDATA[<p>@Gregory: Try GVim (on vim.org I believe) &#8211; not as GUI as SubEthaEdit or the like, but an improvement.</p>
<p>Whatever you do, don&#8217;t switch to Emacs&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.tamba2.org.uk/T2/2005/12/15/vim-a-first/comment-page-1/#comment-6824</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 15 Dec 2005 15:55:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.tamba2.org.uk/T2/archives/2005/12/15/vim-a-first/#comment-6824</guid>
		<description>Justin - the first livecd that has the new broadcom code in it will certainly have me there.

Pete - complex.... but I need to play and Gregory - I&#039;ve got pspad around somewhere and that can edit directly so I ought to try that I suppose.

Oh - on the main index page, refresh, then type drunk

:)</description>
		<content:encoded><![CDATA[<p>Justin &#8211; the first livecd that has the new broadcom code in it will certainly have me there.</p>
<p>Pete &#8211; complex&#8230;. but I need to play and Gregory &#8211; I&#8217;ve got pspad around somewhere and that can edit directly so I ought to try that I suppose.</p>
<p>Oh &#8211; on the main index page, refresh, then type drunk</p>
<p>:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pete</title>
		<link>http://www.tamba2.org.uk/T2/2005/12/15/vim-a-first/comment-page-1/#comment-6821</link>
		<dc:creator>pete</dc:creator>
		<pubDate>Thu, 15 Dec 2005 14:48:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.tamba2.org.uk/T2/archives/2005/12/15/vim-a-first/#comment-6821</guid>
		<description>you might want to try emacs / pico / whatever other editors are on your system, but it&#039;s probably too late (I stumbled on vim first and have never been able to get on with another equivalent since ;)

so ... you&#039;re discovering the shell, eh?  Found out about the Real Ultimate Power(tm) of pipes yet?  Read on ...

http://www.cf.ac.uk/psych/CullingJ/pipes.html
http://www.december.com/unix/tutor/pipesfilters.html


Here&#039;s a quick example ... you might not know the command &quot;less&quot; which is just a little &#039;output pager&#039; thing.  Less lets you page through a large amount of text.  You can use less on a text file to view it:

less myfile.txt

And, if the file contents are long enough, less will let you page up and down.  Now consider this:

ls myDirWithHundredsOfFiles

This will list the directory contents, but there are hundreds of them and they whizz by too fast!  You could limit ls&#039;s output incrementally and repeat the command which would effectively let you see all the files (eventually):

ls -n 20 myDirWithHundredsOfFiles
ls -n 40 myDirWithHundredsOfFiles
ls -n 60 myDirWithHundredsOfFiles
....

But that&#039;s crap, right?  How about we *combine* the ls command with less?  We use a pipe for that:

ls myDirWithHundredsOfFiles &#124; less

Now less will happily page back and forward through the output from the ls command (rather than the content of a text file as in the original example).

Hope that helps!

Pete

(ps - &quot;less&quot; is so called because there was an older version called &quot;more&quot; .... it&#039;s a joke, see?)</description>
		<content:encoded><![CDATA[<p>you might want to try emacs / pico / whatever other editors are on your system, but it&#8217;s probably too late (I stumbled on vim first and have never been able to get on with another equivalent since ;)</p>
<p>so &#8230; you&#8217;re discovering the shell, eh?  Found out about the Real Ultimate Power(tm) of pipes yet?  Read on &#8230;</p>
<p><a href="http://www.cf.ac.uk/psych/CullingJ/pipes.html" rel="nofollow">http://www.cf.ac.uk/psych/CullingJ/pipes.html</a><br />
<a href="http://www.december.com/unix/tutor/pipesfilters.html" rel="nofollow">http://www.december.com/unix/tutor/pipesfilters.html</a></p>
<p>Here&#8217;s a quick example &#8230; you might not know the command &#8220;less&#8221; which is just a little &#8216;output pager&#8217; thing.  Less lets you page through a large amount of text.  You can use less on a text file to view it:</p>
<p>less myfile.txt</p>
<p>And, if the file contents are long enough, less will let you page up and down.  Now consider this:</p>
<p>ls myDirWithHundredsOfFiles</p>
<p>This will list the directory contents, but there are hundreds of them and they whizz by too fast!  You could limit ls&#8217;s output incrementally and repeat the command which would effectively let you see all the files (eventually):</p>
<p>ls -n 20 myDirWithHundredsOfFiles<br />
ls -n 40 myDirWithHundredsOfFiles<br />
ls -n 60 myDirWithHundredsOfFiles<br />
&#8230;.</p>
<p>But that&#8217;s crap, right?  How about we *combine* the ls command with less?  We use a pipe for that:</p>
<p>ls myDirWithHundredsOfFiles | less</p>
<p>Now less will happily page back and forward through the output from the ls command (rather than the content of a text file as in the original example).</p>
<p>Hope that helps!</p>
<p>Pete</p>
<p>(ps &#8211; &#8220;less&#8221; is so called because there was an older version called &#8220;more&#8221; &#8230;. it&#8217;s a joke, see?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Moore</title>
		<link>http://www.tamba2.org.uk/T2/2005/12/15/vim-a-first/comment-page-1/#comment-6819</link>
		<dc:creator>Justin Moore</dc:creator>
		<pubDate>Thu, 15 Dec 2005 14:24:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.tamba2.org.uk/T2/archives/2005/12/15/vim-a-first/#comment-6819</guid>
		<description>Vim and rm -rf are just gateway drugs to Linux. I really hope you get your wireless card issues resolved at some point so you can start enjoying ALL of the powerful stuff that *nix has to offer.</description>
		<content:encoded><![CDATA[<p>Vim and rm -rf are just gateway drugs to Linux. I really hope you get your wireless card issues resolved at some point so you can start enjoying ALL of the powerful stuff that *nix has to offer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gregory</title>
		<link>http://www.tamba2.org.uk/T2/2005/12/15/vim-a-first/comment-page-1/#comment-6818</link>
		<dc:creator>Gregory</dc:creator>
		<pubDate>Thu, 15 Dec 2005 14:22:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.tamba2.org.uk/T2/archives/2005/12/15/vim-a-first/#comment-6818</guid>
		<description>*twitch* Vim! *twitch*

The horror... the horror. Vim is pretty much my entire argument for a GUI ;)

I like the Unix commandline. SSH access to my host is invaluable, but I&#039;ll be damned if I edit anything in VIM. I&#039;ll just SFTP into my account with WinSCP and edit it on the server using my favourite windows gui texteditor (atm Editpad). It was slightly easier on a mac (Fugu and SubEthaEdit) but still... screw a bunch of Vim.

but yeah.. rm -rf, really useful.</description>
		<content:encoded><![CDATA[<p>*twitch* Vim! *twitch*</p>
<p>The horror&#8230; the horror. Vim is pretty much my entire argument for a GUI ;)</p>
<p>I like the Unix commandline. SSH access to my host is invaluable, but I&#8217;ll be damned if I edit anything in VIM. I&#8217;ll just SFTP into my account with WinSCP and edit it on the server using my favourite windows gui texteditor (atm Editpad). It was slightly easier on a mac (Fugu and SubEthaEdit) but still&#8230; screw a bunch of Vim.</p>
<p>but yeah.. rm -rf, really useful.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

