<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Why IntelliJ will always win</title>
	<link>http://www.kimchy.org/why-intellij-will-always-win/</link>
	<description>Here we go. Here comes the Prozac</description>
	<pubDate>Wed, 20 Aug 2008 18:21:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>

	<item>
		<title>By: Shay Banon</title>
		<link>http://www.kimchy.org/why-intellij-will-always-win/#comment-591</link>
		<author>Shay Banon</author>
		<pubDate>Tue, 16 Oct 2007 09:55:28 +0000</pubDate>
		<guid>http://www.kimchy.org/why-intellij-will-always-win/#comment-591</guid>
		<description>Not really since it is a pop up window and not a different view.</description>
		<content:encoded><![CDATA[<p>Not really since it is a pop up window and not a different view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thunderstorm</title>
		<link>http://www.kimchy.org/why-intellij-will-always-win/#comment-577</link>
		<author>Thunderstorm</author>
		<pubDate>Wed, 10 Oct 2007 13:51:22 +0000</pubDate>
		<guid>http://www.kimchy.org/why-intellij-will-always-win/#comment-577</guid>
		<description>Is this the same as CTRL+ALT+H in Eclipse?</description>
		<content:encoded><![CDATA[<p>Is this the same as CTRL+ALT+H in Eclipse?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard L. Burton III</title>
		<link>http://www.kimchy.org/why-intellij-will-always-win/#comment-397</link>
		<author>Richard L. Burton III</author>
		<pubDate>Tue, 04 Sep 2007 15:28:34 +0000</pubDate>
		<guid>http://www.kimchy.org/why-intellij-will-always-win/#comment-397</guid>
		<description>First off Shay, great job on Compass!

I've been using Intellij for years now and I'll never give it up! In fact, I personally purchased a copy for work. Its my IDE of choice!

Best Regards,
Richard L. Burton III</description>
		<content:encoded><![CDATA[<p>First off Shay, great job on Compass!</p>
<p>I&#8217;ve been using Intellij for years now and I&#8217;ll never give it up! In fact, I personally purchased a copy for work. Its my IDE of choice!</p>
<p>Best Regards,<br />
Richard L. Burton III</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Lawrey</title>
		<link>http://www.kimchy.org/why-intellij-will-always-win/#comment-396</link>
		<author>Peter Lawrey</author>
		<pubDate>Mon, 03 Sep 2007 19:42:19 +0000</pubDate>
		<guid>http://www.kimchy.org/why-intellij-will-always-win/#comment-396</guid>
		<description>That should read

&lt;code&gt;
if (a == 5)
&#160;&#160;&#160;&#160;System.out.println("The variable a");
&#160;&#160;&#160;&#160;System.out.println("is 5");
&lt;/code&gt;

You get the idea I hope!</description>
		<content:encoded><![CDATA[<p>That should read</p>
<p><code><br />
if (a == 5)<br />
&nbsp;&nbsp;&nbsp;&nbsp;System.out.println("The variable a");<br />
&nbsp;&nbsp;&nbsp;&nbsp;System.out.println("is 5");<br />
</code></p>
<p>You get the idea I hope!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Lawrey</title>
		<link>http://www.kimchy.org/why-intellij-will-always-win/#comment-395</link>
		<author>Peter Lawrey</author>
		<pubDate>Mon, 03 Sep 2007 19:41:06 +0000</pubDate>
		<guid>http://www.kimchy.org/why-intellij-will-always-win/#comment-395</guid>
		<description>or even.


if (a == 5)
    System.out.println("The variable a");
    System.out.println("is 5");
</description>
		<content:encoded><![CDATA[<p>or even.</p>
<p>if (a == 5)<br />
    System.out.println(&#8221;The variable a&#8221;);<br />
    System.out.println(&#8221;is 5&#8243;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Lawrey</title>
		<link>http://www.kimchy.org/why-intellij-will-always-win/#comment-394</link>
		<author>Peter Lawrey</author>
		<pubDate>Mon, 03 Sep 2007 19:40:08 +0000</pubDate>
		<guid>http://www.kimchy.org/why-intellij-will-always-win/#comment-394</guid>
		<description>That should read

&lt;code&gt;
if (a == 5)
    System.out.println("The variable a");
    System.out.println("is 5");
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>That should read</p>
<p><code><br />
if (a == 5)<br />
    System.out.println("The variable a");<br />
    System.out.println("is 5");<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Lawrey</title>
		<link>http://www.kimchy.org/why-intellij-will-always-win/#comment-393</link>
		<author>Peter Lawrey</author>
		<pubDate>Mon, 03 Sep 2007 19:38:35 +0000</pubDate>
		<guid>http://www.kimchy.org/why-intellij-will-always-win/#comment-393</guid>
		<description>One of the new features I like is the "Suspicous indentation" warning.
e.g.
&lt;code&gt;
if (a == 5)
   System.out.println("The variable a");
   System.out.println("is 5");
&lt;code&gt;
IntelliJ will warn that the second System.out... is suspicous as it isn't part of the same block as the previous line.</description>
		<content:encoded><![CDATA[<p>One of the new features I like is the &#8220;Suspicous indentation&#8221; warning.<br />
e.g.<br />
<code><br />
if (a == 5)<br />
   System.out.println("The variable a");<br />
   System.out.println("is 5");<br />
</code><code><br />
IntelliJ will warn that the second System.out... is suspicous as it isn't part of the same block as the previous line.</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shay Banon</title>
		<link>http://www.kimchy.org/why-intellij-will-always-win/#comment-383</link>
		<author>Shay Banon</author>
		<pubDate>Wed, 22 Aug 2007 13:15:52 +0000</pubDate>
		<guid>http://www.kimchy.org/why-intellij-will-always-win/#comment-383</guid>
		<description>The shortcut key for this on a mac is Apple+Option+F7. On windows I think it is Alt+Ctrl+F7.</description>
		<content:encoded><![CDATA[<p>The shortcut key for this on a mac is Apple+Option+F7. On windows I think it is Alt+Ctrl+F7.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Baker</title>
		<link>http://www.kimchy.org/why-intellij-will-always-win/#comment-381</link>
		<author>Craig Baker</author>
		<pubDate>Tue, 21 Aug 2007 23:57:34 +0000</pubDate>
		<guid>http://www.kimchy.org/why-intellij-will-always-win/#comment-381</guid>
		<description>Even for an Eclispe fan boy, I have to say that is pretty good. Eclipse does this really badly (right click, find the menu item, search for reference/declerations, select .......)</description>
		<content:encoded><![CDATA[<p>Even for an Eclispe fan boy, I have to say that is pretty good. Eclipse does this really badly (right click, find the menu item, search for reference/declerations, select &#8230;&#8230;.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricky Clarkson</title>
		<link>http://www.kimchy.org/why-intellij-will-always-win/#comment-378</link>
		<author>Ricky Clarkson</author>
		<pubDate>Tue, 21 Aug 2007 17:19:13 +0000</pubDate>
		<guid>http://www.kimchy.org/why-intellij-will-always-win/#comment-378</guid>
		<description>How do you make this popup appear?</description>
		<content:encoded><![CDATA[<p>How do you make this popup appear?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
