<?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: notepad.exe vs vi: Which Is More Difficult To Learn?  The Answer Isn&#8217;t Quite What You Expect.</title>
	<atom:link href="http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/</link>
	<description>a swift kick in the *nix</description>
	<lastBuildDate>Fri, 05 Feb 2010 04:27:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Bob</title>
		<link>http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/comment-page-1/#comment-5062</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Fri, 05 Sep 2008 16:27:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/#comment-5062</guid>
		<description>Ok, I&#039;m a unix systems administrator, and have been using vi for a long time, but even I have to say that this article is extremely biased.  Notepad is by far easier to use, and definitely to learn.  

I don&#039;t use it often, but when the situation calls for it, notepad has the option to use this thing called a mouse.  If nothing else, this alone wins the contest for notepad.</description>
		<content:encoded><![CDATA[<p>Ok, I&#8217;m a unix systems administrator, and have been using vi for a long time, but even I have to say that this article is extremely biased.  Notepad is by far easier to use, and definitely to learn.  </p>
<p>I don&#8217;t use it often, but when the situation calls for it, notepad has the option to use this thing called a mouse.  If nothing else, this alone wins the contest for notepad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/comment-page-1/#comment-5048</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Thu, 28 Aug 2008 23:38:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/#comment-5048</guid>
		<description>This is all good info, but I think that saying notepad is complicated because it has a lot of shortcut keys is oversimplifying a bit. I recognize most of those notepad commands, and they are pretty much all universal to most windows applications. If you know the word commands, then you know the notepad commands, etc. I haven&#039;t used Linux much recently, but it seems that a lot of these same commands work there in the GUI apps as well? Also, as you mentioned you don&#039;t have to use the keyboard commands in notepad, it just speeds things up, so if you forget one, you can find it in the menus. And a lot of the menu items tell you their keyboard shortcuts, so if you can find it in the menu, you can teach yourself the commands as you go. vi/vim may be more powerful, but for normal text editing, I don&#039;t really think it is any simpler than notepad, especially the learning curve.</description>
		<content:encoded><![CDATA[<p>This is all good info, but I think that saying notepad is complicated because it has a lot of shortcut keys is oversimplifying a bit. I recognize most of those notepad commands, and they are pretty much all universal to most windows applications. If you know the word commands, then you know the notepad commands, etc. I haven&#8217;t used Linux much recently, but it seems that a lot of these same commands work there in the GUI apps as well? Also, as you mentioned you don&#8217;t have to use the keyboard commands in notepad, it just speeds things up, so if you forget one, you can find it in the menus. And a lot of the menu items tell you their keyboard shortcuts, so if you can find it in the menu, you can teach yourself the commands as you go. vi/vim may be more powerful, but for normal text editing, I don&#8217;t really think it is any simpler than notepad, especially the learning curve.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronald Duncan</title>
		<link>http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/comment-page-1/#comment-4883</link>
		<dc:creator>Ronald Duncan</dc:creator>
		<pubDate>Sun, 20 Jul 2008 12:34:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/#comment-4883</guid>
		<description>Sorry angle brackets got removed to leave 
:,s which is junk.

With the ex commands it is :lineno,linenoCommand

e.g.
search
:5,8s/findit/replace/
or
All lines are
:%s/findit/replace

using g (global) to delete all matching lines
:%g/findit/d
or to yank all matching lines
:%g/findit/y

There is one area where vi is better than vim and that is on very large files.  vi does not try and load the file it just takes the first small section, so it is very fast at editing massive files.</description>
		<content:encoded><![CDATA[<p>Sorry angle brackets got removed to leave<br />
:,s which is junk.</p>
<p>With the ex commands it is :lineno,linenoCommand</p>
<p>e.g.<br />
search<br />
:5,8s/findit/replace/<br />
or<br />
All lines are<br />
:%s/findit/replace</p>
<p>using g (global) to delete all matching lines<br />
:%g/findit/d<br />
or to yank all matching lines<br />
:%g/findit/y</p>
<p>There is one area where vi is better than vim and that is on very large files.  vi does not try and load the file it just takes the first small section, so it is very fast at editing massive files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronald Duncan</title>
		<link>http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/comment-page-1/#comment-4882</link>
		<dc:creator>Ronald Duncan</dc:creator>
		<pubDate>Sun, 20 Jul 2008 12:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/#comment-4882</guid>
		<description>The best way to learn vi is to install vim on your windows machine and go through the vim tutorial.

I first learnt vi through man vi and it was a nightmare.  I decided to try again after playing with Elite after a 20 year break and finding that the keyboard was just so much faster than a joy stick.

When it comes to editing vi/vim is so much faster than a  keyboard and mouse.

Using the vim tutorial was a pleasure and so much easier than trying to figure things out from man vi

There are a few errors in your list.

Cut is d (delete)
Copy is y (yank)

The keyboard cheat sheet is great, but I still recommend running through the vim tutorial.  It is a quick fun way of learning vi.

It really is worth it, and once you have managed to get into the switch between normal, command and insert mode.  You become so much more productive than with any other editor.

Because you often want to do things with a number of lines you need to be able to toggle line numbering.

:se nu  // :set number turns on line nos
:se nonu // :set nonumber turns off line nos

:the ex commands are incredibly powerful and 

q: gives you a command history editor in vim

The key ex commands are

:,s/findit/replacewith/gi
It is a great way of learning regular expressions and
/findit is the way to test them in vim

:,g/findit/set of commands to apply to selection</description>
		<content:encoded><![CDATA[<p>The best way to learn vi is to install vim on your windows machine and go through the vim tutorial.</p>
<p>I first learnt vi through man vi and it was a nightmare.  I decided to try again after playing with Elite after a 20 year break and finding that the keyboard was just so much faster than a joy stick.</p>
<p>When it comes to editing vi/vim is so much faster than a  keyboard and mouse.</p>
<p>Using the vim tutorial was a pleasure and so much easier than trying to figure things out from man vi</p>
<p>There are a few errors in your list.</p>
<p>Cut is d (delete)<br />
Copy is y (yank)</p>
<p>The keyboard cheat sheet is great, but I still recommend running through the vim tutorial.  It is a quick fun way of learning vi.</p>
<p>It really is worth it, and once you have managed to get into the switch between normal, command and insert mode.  You become so much more productive than with any other editor.</p>
<p>Because you often want to do things with a number of lines you need to be able to toggle line numbering.</p>
<p>:se nu  // :set number turns on line nos<br />
:se nonu // :set nonumber turns off line nos</p>
<p>:the ex commands are incredibly powerful and </p>
<p>q: gives you a command history editor in vim</p>
<p>The key ex commands are</p>
<p>:,s/findit/replacewith/gi<br />
It is a great way of learning regular expressions and<br />
/findit is the way to test them in vim</p>
<p>:,g/findit/set of commands to apply to selection</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cimo</title>
		<link>http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/comment-page-1/#comment-4185</link>
		<dc:creator>cimo</dc:creator>
		<pubDate>Thu, 27 Mar 2008 10:36:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/#comment-4185</guid>
		<description>ggVG -&gt; Select All
:%y* -&gt; copy all lines to system clipboard</description>
		<content:encoded><![CDATA[<p>ggVG -&gt; Select All<br />
:%y* -&gt; copy all lines to system clipboard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vi keyboard cheatsheet &#171; Ubuntu Life</title>
		<link>http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/comment-page-1/#comment-4088</link>
		<dc:creator>vi keyboard cheatsheet &#171; Ubuntu Life</dc:creator>
		<pubDate>Mon, 17 Mar 2008 11:29:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/#comment-4088</guid>
		<description>[...] Enlace &#124; Notepad vs vi [...]</description>
		<content:encoded><![CDATA[<p>[...] Enlace | Notepad vs vi [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wayne</title>
		<link>http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/comment-page-1/#comment-838</link>
		<dc:creator>Wayne</dc:creator>
		<pubDate>Wed, 24 Oct 2007 08:07:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/#comment-838</guid>
		<description>Great tip lelutin!</description>
		<content:encoded><![CDATA[<p>Great tip lelutin!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lelutin</title>
		<link>http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/comment-page-1/#comment-832</link>
		<dc:creator>lelutin</dc:creator>
		<pubDate>Wed, 24 Oct 2007 06:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/#comment-832</guid>
		<description>If you&#039;re using Vim, you can also press v to select a region of text and y to copy the region. pressing V has a similar effect but for entire lines and Ctrl+v selects a block of text (very useful to insert the same text on every line by pressing I and then typing. and also very powerful if used with a filtering command: with a block of text selected, press ! and type a &quot;filter&quot; command like &#039;sed&#039; with arguments. this way you can easily make complex modifications on a small subset of your text)</description>
		<content:encoded><![CDATA[<p>If you&#8217;re using Vim, you can also press v to select a region of text and y to copy the region. pressing V has a similar effect but for entire lines and Ctrl+v selects a block of text (very useful to insert the same text on every line by pressing I and then typing. and also very powerful if used with a filtering command: with a block of text selected, press ! and type a &#8220;filter&#8221; command like &#8217;sed&#8217; with arguments. this way you can easily make complex modifications on a small subset of your text)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wayne</title>
		<link>http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/comment-page-1/#comment-774</link>
		<dc:creator>Wayne</dc:creator>
		<pubDate>Mon, 22 Oct 2007 04:43:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/#comment-774</guid>
		<description>That&#039;s annoying... hmm &gt; &lt;</description>
		<content:encoded><![CDATA[<p>That&#8217;s annoying&#8230; hmm &gt; &lt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spence</title>
		<link>http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/comment-page-1/#comment-773</link>
		<dc:creator>Spence</dc:creator>
		<pubDate>Mon, 22 Oct 2007 04:34:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.fsckin.com/2007/10/17/notepadexe-vs-vi-which-is-more-difficult-to-learn-the-answer-isnt-quite-what-you-expect/#comment-773</guid>
		<description>grr...

map &lt;C-a&gt; gg_vG$

Edit:  Wayne at Oct 21 10:45 pm
Fixed it... ampersand lt(or gt) followed by semicolon did the trick.


</description>
		<content:encoded><![CDATA[<p>grr&#8230;</p>
<p>map &lt;C-a&gt; gg_vG$</p>
<p>Edit:  Wayne at Oct 21 10:45 pm<br />
Fixed it&#8230; ampersand lt(or gt) followed by semicolon did the trick.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.464 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-02-10 21:49:11 -->
