<?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"
	>
<channel>
	<title>Comments on: Text Editors for Coders : Deathmatch Review</title>
	<atom:link href="http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/feed/" rel="self" type="application/rss+xml" />
	<link>http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/?source=rss</link>
	<description>A bit of my personal life, mainly focused on my kids. A bit of code, mainly focused on Wordpress and PHP. Overall, bits of nothing in particular.</description>
	<pubDate>Fri, 21 Nov 2008 14:17:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: dr3d</title>
		<link>http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-83754</link>
		<dc:creator>dr3d</dc:creator>
		<pubDate>Wed, 19 Nov 2008 21:13:59 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-83754</guid>
		<description>Notepad++ fails HEREDOC if encoding is MAC .. just an FYI cause it had me pulling the last of my hair out....</description>
		<content:encoded><![CDATA[<p>Notepad++ fails HEREDOC if encoding is MAC .. just an FYI cause it had me pulling the last of my hair out&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: razorwire</title>
		<link>http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-73065</link>
		<dc:creator>razorwire</dc:creator>
		<pubDate>Fri, 12 Sep 2008 08:00:42 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-73065</guid>
		<description>Textmate can do HEREDOC code styling as long as you update the PHP bundle to the latest one. See:
http://macromates.com/

To update the PHP bundle after installing textmate change "Python" to "PHP" in the terminal commands on the following page:
http://blog.macromates.com/2006/updating-a-bundle/</description>
		<content:encoded><![CDATA[<p>Textmate can do HEREDOC code styling as long as you update the PHP bundle to the latest one. See:<br />
<a href="http://macromates.com/" rel="nofollow">http://macromates.com/</a></p>
<p>To update the PHP bundle after installing textmate change &#8220;Python&#8221; to &#8220;PHP&#8221; in the terminal commands on the following page:<br />
<a href="http://blog.macromates.com/2006/updating-a-bundle/" rel="nofollow">http://blog.macromates.com/2006/updating-a-bundle/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: razorwire</title>
		<link>http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-73039</link>
		<dc:creator>razorwire</dc:creator>
		<pubDate>Fri, 12 Sep 2008 03:57:14 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-73039</guid>
		<description>A different HEREDOC identifier SHOULD change the code styling within the HEREDOC part appropriately and NOT just assume every HEREDOC is a GENERIC quoted string. In the example below I want it to parse the heredoc part as JAVASCRIPT with matching JAVASCRIPT code styling!

ie)
$language = &#60;&#60;&#60;JAVASCRIPT
    This is invalid javascript.
    The &#60;&#60;&#60;JAVASCRIPT code styling here SHOULD be screwy (NOT necessarily a solid color)
    &#60;&#60;&#60;
    &#62;&#62;&#62;
    /*
    abcdef
JAVASCRIPT;

ie)
$language = &#60;&#60;&#60;JAVASCRIPT
    /* This &#60;&#60;&#60;JAVASCRIPT SHOULD have JAVASCRIPT code styling.
    It SHOULD NOT all be the same color! */
    var stlyled;
    styled = true;
JAVASCRIPT;

Is there a text editor that can do this?</description>
		<content:encoded><![CDATA[<p>A different HEREDOC identifier SHOULD change the code styling within the HEREDOC part appropriately and NOT just assume every HEREDOC is a GENERIC quoted string. In the example below I want it to parse the heredoc part as JAVASCRIPT with matching JAVASCRIPT code styling!</p>
<p>ie)<br />
$language = &lt;&lt;&lt;JAVASCRIPT<br />
    This is invalid javascript.<br />
    The &lt;&lt;&lt;JAVASCRIPT code styling here SHOULD be screwy (NOT necessarily a solid color)<br />
    &lt;&lt;&lt;<br />
    &gt;&gt;&gt;<br />
    /*<br />
    abcdef<br />
JAVASCRIPT;</p>
<p>ie)<br />
$language = &lt;&lt;&lt;JAVASCRIPT<br />
    /* This &lt;&lt;&lt;JAVASCRIPT SHOULD have JAVASCRIPT code styling.<br />
    It SHOULD NOT all be the same color! */<br />
    var stlyled;<br />
    styled = true;<br />
JAVASCRIPT;</p>
<p>Is there a text editor that can do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Firebat</title>
		<link>http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-59053</link>
		<dc:creator>Firebat</dc:creator>
		<pubDate>Fri, 04 Jul 2008 21:59:21 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-59053</guid>
		<description>Great list, personally I have been using phpDesigner in windows and I find it quite nice especially since it highlights syntax errors such as a missing ";".

Might as well test it with your tricky code when I get home. Using linux however, I really love Gedit (Gnome's default editor) just tested your code there and it has no syntax highlight flaws, its only missing the collapse option. What I really like about it though is the ability to use it with gnome's ftp connections and open/save as if remote files were local.

Regards</description>
		<content:encoded><![CDATA[<p>Great list, personally I have been using phpDesigner in windows and I find it quite nice especially since it highlights syntax errors such as a missing &#8220;;&#8221;.</p>
<p>Might as well test it with your tricky code when I get home. Using linux however, I really love Gedit (Gnome&#8217;s default editor) just tested your code there and it has no syntax highlight flaws, its only missing the collapse option. What I really like about it though is the ability to use it with gnome&#8217;s ftp connections and open/save as if remote files were local.</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adrian liem</title>
		<link>http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-54742</link>
		<dc:creator>adrian liem</dc:creator>
		<pubDate>Wed, 28 May 2008 19:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-54742</guid>
		<description>and i tried to fix that -- i hope
https://sourceforge.net/forum/message.php?msg_id=4991463</description>
		<content:encoded><![CDATA[<p>and i tried to fix that &#8212; i hope<br />
<a href="https://sourceforge.net/forum/message.php?msg_id=4991463" rel="nofollow">https://sourceforge.net/forum/message.php?msg_id=4991463</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adrian</title>
		<link>http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-54621</link>
		<dc:creator>adrian</dc:creator>
		<pubDate>Tue, 27 May 2008 18:15:03 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-54621</guid>
		<description>Notepad++ code snippet's hotkey (quicktext plugin) is Ctrl Enter -- which is a great downside for me. i think people has cried out for the Tab hotkey for ages now :)</description>
		<content:encoded><![CDATA[<p>Notepad++ code snippet&#8217;s hotkey (quicktext plugin) is Ctrl Enter &#8212; which is a great downside for me. i think people has cried out for the Tab hotkey for ages now :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mat</title>
		<link>http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-52417</link>
		<dc:creator>Mat</dc:creator>
		<pubDate>Tue, 06 May 2008 08:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-52417</guid>
		<description>I just wonder, which of the editors supports regex syntax that oneself can make?</description>
		<content:encoded><![CDATA[<p>I just wonder, which of the editors supports regex syntax that oneself can make?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carbonize</title>
		<link>http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-48497</link>
		<dc:creator>Carbonize</dc:creator>
		<pubDate>Tue, 11 Mar 2008 18:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-48497</guid>
		<description>Whilst Notepad++ has great syntax support this is due to the component used and the the person who makes the program. But as someone else has commented it takes more than good syntax highlighting to make a good text editor. I have used both PSPad and Notepad++ and always return to PSPad. My main reasons for this is that PSPad has a better list of PHP functions and can complete them as either just the function and parenthesis or as the complete function and attribute descriptions as taken from php.net. And I just tested your test code on PSPad and switched it to PHP highlighting and not HTML multihighlighter and it passes line 3 fine but fails on the heredoc. Also I find PSPad easier to use and it's configuration makes more sense.

Just to add that Notepad++ does now have FTP support.</description>
		<content:encoded><![CDATA[<p>Whilst Notepad++ has great syntax support this is due to the component used and the the person who makes the program. But as someone else has commented it takes more than good syntax highlighting to make a good text editor. I have used both PSPad and Notepad++ and always return to PSPad. My main reasons for this is that PSPad has a better list of PHP functions and can complete them as either just the function and parenthesis or as the complete function and attribute descriptions as taken from php.net. And I just tested your test code on PSPad and switched it to PHP highlighting and not HTML multihighlighter and it passes line 3 fine but fails on the heredoc. Also I find PSPad easier to use and it&#8217;s configuration makes more sense.</p>
<p>Just to add that Notepad++ does now have FTP support.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-46278</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 03 Feb 2008 04:49:09 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-46278</guid>
		<description>The version of EditPad Pro that I'm using (6.3.2) does not presume that line 3 is a closing tag, and the editor will autofold comments and For loops if you set one of its configuration options to generate folds based on text indentation (not perfect, I realize, but better than nothing).</description>
		<content:encoded><![CDATA[<p>The version of EditPad Pro that I&#8217;m using (6.3.2) does not presume that line 3 is a closing tag, and the editor will autofold comments and For loops if you set one of its configuration options to generate folds based on text indentation (not perfect, I realize, but better than nothing).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leeoniya</title>
		<link>http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-45326</link>
		<dc:creator>Leeoniya</dc:creator>
		<pubDate>Sat, 19 Jan 2008 06:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2007/06/text-editors-for-coders-deathmatch-review/#comment-45326</guid>
		<description>Ozh, i came to the same conclusions that you did. but i have to have live tag matching.

try dev-PHP or anything else that uses the SynWeb component: http://flatdev.ovh.org/downloads.php?project=2

they all pass your php syntax test, are as good if not better than all scintilla-based editors like notepad++, notepad2, programmer's notepad2, sciTE etc. plus you get live HTML tag matching.

depending on the implementation tho, you may or may not get tag and attribute code hints (for css and html), tag auto completion, and color picker and file path browse dialogs which are the only other things i would like to see to greatly improve usability. php designer is not free, but has a ton more stuff that makes it the best php editor i think w/live syntax checking, xdebug, ftp, SVN etc.

Leon</description>
		<content:encoded><![CDATA[<p>Ozh, i came to the same conclusions that you did. but i have to have live tag matching.</p>
<p>try dev-PHP or anything else that uses the SynWeb component: <a href="http://flatdev.ovh.org/downloads.php?project=2" rel="nofollow">http://flatdev.ovh.org/downloads.php?project=2</a></p>
<p>they all pass your php syntax test, are as good if not better than all scintilla-based editors like notepad++, notepad2, programmer&#8217;s notepad2, sciTE etc. plus you get live HTML tag matching.</p>
<p>depending on the implementation tho, you may or may not get tag and attribute code hints (for css and html), tag auto completion, and color picker and file path browse dialogs which are the only other things i would like to see to greatly improve usability. php designer is not free, but has a ton more stuff that makes it the best php editor i think w/live syntax checking, xdebug, ftp, SVN etc.</p>
<p>Leon</p>
]]></content:encoded>
	</item>
</channel>
</rss>
