<?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: The 5 best damned text editors for Windows</title>
	<atom:link href="http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/</link>
	<description>firefox extension development</description>
	<lastBuildDate>Mon, 06 Sep 2010 02:06:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: cyshuqian</title>
		<link>http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/comment-page-1/#comment-15857</link>
		<dc:creator>cyshuqian</dc:creator>
		<pubDate>Wed, 25 Aug 2010 05:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/#comment-15857</guid>
		<description>http://www.luleidoorswindows.com 
http://www.cncwm.com</description>
		<content:encoded><![CDATA[<p><a href="http://www.luleidoorswindows.com" rel="nofollow">http://www.luleidoorswindows.com</a><br />
<a href="http://www.cncwm.com" rel="nofollow">http://www.cncwm.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cyshuqian</title>
		<link>http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/comment-page-1/#comment-15856</link>
		<dc:creator>cyshuqian</dc:creator>
		<pubDate>Wed, 25 Aug 2010 05:50:11 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/#comment-15856</guid>
		<description>http://www.racketchina.com
http://www.lk-outdoorfurniture.com 
http://www.eammarsolar.com</description>
		<content:encoded><![CDATA[<p><a href="http://www.racketchina.com" rel="nofollow">http://www.racketchina.com</a><br />
<a href="http://www.lk-outdoorfurniture.com" rel="nofollow">http://www.lk-outdoorfurniture.com</a><br />
<a href="http://www.eammarsolar.com" rel="nofollow">http://www.eammarsolar.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cyshuqian</title>
		<link>http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/comment-page-1/#comment-15855</link>
		<dc:creator>cyshuqian</dc:creator>
		<pubDate>Wed, 25 Aug 2010 05:49:36 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/#comment-15855</guid>
		<description>http://www.trading-mx.com
http://www.suntasksolar.com</description>
		<content:encoded><![CDATA[<p><a href="http://www.trading-mx.com" rel="nofollow">http://www.trading-mx.com</a><br />
<a href="http://www.suntasksolar.com" rel="nofollow">http://www.suntasksolar.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaap van Ganswijk</title>
		<link>http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/comment-page-1/#comment-15459</link>
		<dc:creator>Jaap van Ganswijk</dc:creator>
		<pubDate>Tue, 16 Sep 2008 07:07:46 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/#comment-15459</guid>
		<description>When you are a programmer, also consider &#039;vi&#039;. There is also a very good version for Windows. You can download it from &#039;vim.org&#039;.

The great advantage of &#039;vi&#039; is that it doesn&#039;t need the mouse or menu options or F1..12 keys. So if you can type blindly you can edit files much more quickly than the &#039;common people&#039;.

The big advantage of &#039;vi&#039; is that it has two modes, namely a non-text-inserting/changing mode and a text-inserting/changing mode. Programmers spend a lot of time not actually writing or changing text but traversing it or modifying it in a not-line-after-line
mode and &#039;vi&#039; is perfect for that.

For example, go to the start of a line and use the insert command &#039;;&#039; to insert text and insert &#039;  &#039; to move the first line of a block a level to the right and use ESC to leave the insert mode. Now go down to the next line using the &#039;j&#039; or the down arrow key and type &#039;.&#039; to repeat the last command. I have never found a mouse-based editor that can change say 10 lines faster and &#039;vi&#039; still has another technique: mark the current line using &#039;mk&#039; and go to the end line and type &quot;:&#039;k,.s/^/  /&quot; and all lines from the first line to the current line will have two spaces inserted at their beginning. This might take you 10 minutes using a mouse-based editor.

The command may seem very cryptical but it means:
:  - go into line editing mode
&#039;k - from the line marked &#039;k&#039;
,  - seperator
.  - to the current line
s  - substitute
/  - seperator
^  - substitute the start of the line
/  - seperator
 - substitute by two spaces
/  - seperator
 - end the line editing mode

Of course all of these things can be varied in all kinds of regular expression like ways...

Another advantage is that &#039;vi&#039; hasn&#039;t changed much since it&#039;s inception so all of the old manuals still apply. It has very excellent code coloring since several years for all kinds of languages and you can move the cursor using the arrow keys which allows you to stay in the edit-mode if you like.

By the way, Eric says that white text on a black background is better than black on white but the reason that original monitors had that was because it required much less power. Just as black on white paper printing needs much less ink. I don&#039;t mind white text on a black background on a screen, but not within a (windows) frame that is based on a light-colored background. I&#039;d like to know what &#039;pure fact&#039; would back up Eric&#039;s theory.</description>
		<content:encoded><![CDATA[<p>When you are a programmer, also consider &#8216;vi&#8217;. There is also a very good version for Windows. You can download it from &#8216;vim.org&#8217;.</p>
<p>The great advantage of &#8216;vi&#8217; is that it doesn&#8217;t need the mouse or menu options or F1..12 keys. So if you can type blindly you can edit files much more quickly than the &#8216;common people&#8217;.</p>
<p>The big advantage of &#8216;vi&#8217; is that it has two modes, namely a non-text-inserting/changing mode and a text-inserting/changing mode. Programmers spend a lot of time not actually writing or changing text but traversing it or modifying it in a not-line-after-line<br />
mode and &#8216;vi&#8217; is perfect for that.</p>
<p>For example, go to the start of a line and use the insert command &#8216;;&#8217; to insert text and insert &#8216;  &#8216; to move the first line of a block a level to the right and use ESC to leave the insert mode. Now go down to the next line using the &#8216;j&#8217; or the down arrow key and type &#8216;.&#8217; to repeat the last command. I have never found a mouse-based editor that can change say 10 lines faster and &#8216;vi&#8217; still has another technique: mark the current line using &#8216;mk&#8217; and go to the end line and type &#8220;:&#8217;k,.s/^/  /&#8221; and all lines from the first line to the current line will have two spaces inserted at their beginning. This might take you 10 minutes using a mouse-based editor.</p>
<p>The command may seem very cryptical but it means:<br />
:  &#8211; go into line editing mode<br />
&#8216;k &#8211; from the line marked &#8216;k&#8217;<br />
,  &#8211; seperator<br />
.  &#8211; to the current line<br />
s  &#8211; substitute<br />
/  &#8211; seperator<br />
^  &#8211; substitute the start of the line<br />
/  &#8211; seperator<br />
 &#8211; substitute by two spaces<br />
/  &#8211; seperator<br />
 &#8211; end the line editing mode</p>
<p>Of course all of these things can be varied in all kinds of regular expression like ways&#8230;</p>
<p>Another advantage is that &#8216;vi&#8217; hasn&#8217;t changed much since it&#8217;s inception so all of the old manuals still apply. It has very excellent code coloring since several years for all kinds of languages and you can move the cursor using the arrow keys which allows you to stay in the edit-mode if you like.</p>
<p>By the way, Eric says that white text on a black background is better than black on white but the reason that original monitors had that was because it required much less power. Just as black on white paper printing needs much less ink. I don&#8217;t mind white text on a black background on a screen, but not within a (windows) frame that is based on a light-colored background. I&#8217;d like to know what &#8216;pure fact&#8217; would back up Eric&#8217;s theory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bugmenot</title>
		<link>http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/comment-page-1/#comment-15390</link>
		<dc:creator>bugmenot</dc:creator>
		<pubDate>Mon, 02 Jun 2008 16:46:24 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/#comment-15390</guid>
		<description>Metapad is a wonderful little freeware drop-in replacement for Notepad.  Does NOT do syntax highlighting, and edits only one file at a time.  But its footprint is small enough that you can open 2 or 3 instances if you need to edit multiple files.

It does fun things with text, such as &quot;commit word wrap&quot;, &quot;unwrap lines&quot;, &quot;tabified&quot;, &quot;untabified&quot;, etc.  It can instantly convert any file to or from DOS format, Unix format, or a couple of different Unicode formats.  

http://www.liquidninja.com/metapad/ 
or
http://www.welcome.to/metapad/</description>
		<content:encoded><![CDATA[<p>Metapad is a wonderful little freeware drop-in replacement for Notepad.  Does NOT do syntax highlighting, and edits only one file at a time.  But its footprint is small enough that you can open 2 or 3 instances if you need to edit multiple files.</p>
<p>It does fun things with text, such as &#8220;commit word wrap&#8221;, &#8220;unwrap lines&#8221;, &#8220;tabified&#8221;, &#8220;untabified&#8221;, etc.  It can instantly convert any file to or from DOS format, Unix format, or a couple of different Unicode formats.  </p>
<p><a href="http://www.liquidninja.com/metapad/" rel="nofollow">http://www.liquidninja.com/metapad/</a><br />
or<br />
<a href="http://www.welcome.to/metapad/" rel="nofollow">http://www.welcome.to/metapad/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: firefoxuser</title>
		<link>http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/comment-page-1/#comment-15337</link>
		<dc:creator>firefoxuser</dc:creator>
		<pubDate>Fri, 28 Mar 2008 16:36:35 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/#comment-15337</guid>
		<description>PSPad is an excellent editor (&lt;a href=&quot;http://www.pspad.com/en/&quot; rel=&quot;nofollow&quot;&gt;www.pspad.com&lt;/a&gt;).  Personally, I prefer it to Notepad++.</description>
		<content:encoded><![CDATA[<p>PSPad is an excellent editor (<a href="http://www.pspad.com/en/" rel="nofollow">http://www.pspad.com</a>).  Personally, I prefer it to Notepad++.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: palmcrash</title>
		<link>http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/comment-page-1/#comment-15328</link>
		<dc:creator>palmcrash</dc:creator>
		<pubDate>Wed, 05 Mar 2008 05:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/#comment-15328</guid>
		<description>My personal favorite (and any self-respecting UNIX/Linux user) is VIM (http://www.vim.org).</description>
		<content:encoded><![CDATA[<p>My personal favorite (and any self-respecting UNIX/Linux user) is VIM (<a href="http://www.vim.org" rel="nofollow">http://www.vim.org</a>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/comment-page-1/#comment-15308</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Wed, 23 Jan 2008 22:15:33 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2008/01/07/the-5-best-damned-text-editors-for-windows/#comment-15308</guid>
		<description>Blackboard. It rules.</description>
		<content:encoded><![CDATA[<p>Blackboard. It rules.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
