<?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: How To add &#8220;Open folder in Textmate&#8221; to Finder Context Menu</title>
	<atom:link href="http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/feed/" rel="self" type="application/rss+xml" />
	<link>http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/</link>
	<description>Instant Usability &#38; Web Standards</description>
	<lastBuildDate>Sat, 28 Jan 2012 13:44:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Henrique</title>
		<link>http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/comment-page-1/#comment-531548</link>
		<dc:creator>Henrique</dc:creator>
		<pubDate>Mon, 25 Jul 2011 15:23:03 +0000</pubDate>
		<guid isPermaLink="false">http://justaddwater.dk/?p=1252#comment-531548</guid>
		<description>Great tip!

Using what Adam and Scott sad, but with the argument surrounded by double quotes avoiding problems with path that contain spaces.

/usr/local/bin/mate &quot;$1&quot;</description>
		<content:encoded><![CDATA[<p>Great tip!</p>
<p>Using what Adam and Scott sad, but with the argument surrounded by double quotes avoiding problems with path that contain spaces.</p>
<p>/usr/local/bin/mate &#8220;$1&#8243;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/comment-page-1/#comment-507266</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Wed, 12 Jan 2011 04:38:44 +0000</pubDate>
		<guid isPermaLink="false">http://justaddwater.dk/?p=1252#comment-507266</guid>
		<description>Hey there:

Thanks for the tip. I&#039;ve written a version of this workflow that uses slightly fewer steps and also works with paths that contain spaces. You can check it out here:

http://hoyvinglavin.tumblr.com/post/2708978813/opening-folders-in-textmate-via-finder-context-menus</description>
		<content:encoded><![CDATA[<p>Hey there:</p>
<p>Thanks for the tip. I&#8217;ve written a version of this workflow that uses slightly fewer steps and also works with paths that contain spaces. You can check it out here:</p>
<p><a href="http://hoyvinglavin.tumblr.com/post/2708978813/opening-folders-in-textmate-via-finder-context-menus">http://hoyvinglavin.tumblr.com/post/2708978813/opening-folders-in-textmate-via-finder-context-menus</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Open folder in Textmate &#124; Elink Media</title>
		<link>http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/comment-page-1/#comment-506860</link>
		<dc:creator>Open folder in Textmate &#124; Elink Media</dc:creator>
		<pubDate>Sat, 08 Jan 2011 11:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://justaddwater.dk/?p=1252#comment-506860</guid>
		<description>[...] http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/   Share this article [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/">http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/</a>   Share this article [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/comment-page-1/#comment-505906</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Mon, 03 Jan 2011 10:10:19 +0000</pubDate>
		<guid isPermaLink="false">http://justaddwater.dk/?p=1252#comment-505906</guid>
		<description>Thanks Adam, that solved the double-loading issue for me as well.

Also, for whatever reason, the workflow wasn&#039;t picking up my $PATH variable, so I actually had to enter:

/usr/local/bin/mate $1

as the shell script. Other than that, though, works like a charm!</description>
		<content:encoded><![CDATA[<p>Thanks Adam, that solved the double-loading issue for me as well.</p>
<p>Also, for whatever reason, the workflow wasn&#8217;t picking up my $PATH variable, so I actually had to enter:</p>
<p>/usr/local/bin/mate $1</p>
<p>as the shell script. Other than that, though, works like a charm!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/comment-page-1/#comment-503678</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Mon, 06 Dec 2010 02:54:33 +0000</pubDate>
		<guid isPermaLink="false">http://justaddwater.dk/?p=1252#comment-503678</guid>
		<description>To fix the &quot;double&quot; loading issue:

In the &quot;Run Shell Script&quot; Automator action, in the &quot;Pass Input&quot; drop down, change from &quot;to stdin&quot; to &quot;as arguments&quot;

Change the script:

FROM:
cat &#124; xargs mate

TO:
mate $1</description>
		<content:encoded><![CDATA[<p>To fix the &#8220;double&#8221; loading issue:</p>
<p>In the &#8220;Run Shell Script&#8221; Automator action, in the &#8220;Pass Input&#8221; drop down, change from &#8220;to stdin&#8221; to &#8220;as arguments&#8221;</p>
<p>Change the script:</p>
<p>FROM:<br />
cat | xargs mate</p>
<p>TO:<br />
mate $1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barbara Hofmeister</title>
		<link>http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/comment-page-1/#comment-491641</link>
		<dc:creator>Barbara Hofmeister</dc:creator>
		<pubDate>Sat, 19 Dec 2009 07:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://justaddwater.dk/?p=1252#comment-491641</guid>
		<description>Google is most popular and the fastest search engine. adding this kind of facilities will increase its popularity.</description>
		<content:encoded><![CDATA[<p>Google is most popular and the fastest search engine. adding this kind of facilities will increase its popularity.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesper Rønn-Jensen</title>
		<link>http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/comment-page-1/#comment-491591</link>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
		<pubDate>Wed, 16 Dec 2009 20:38:54 +0000</pubDate>
		<guid isPermaLink="false">http://justaddwater.dk/?p=1252#comment-491591</guid>
		<description>@Daniel. Actually yes I have the same problem. Please let me know if you come up with a fix !</description>
		<content:encoded><![CDATA[<p>@Daniel. Actually yes I have the same problem. Please let me know if you come up with a fix !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/comment-page-1/#comment-491507</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Fri, 11 Dec 2009 00:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://justaddwater.dk/?p=1252#comment-491507</guid>
		<description>Nice tip, but somehow the folder or file I selected in Finder appears twice in the Textmate drawer. Do you have the same problem?</description>
		<content:encoded><![CDATA[<p>Nice tip, but somehow the folder or file I selected in Finder appears twice in the Textmate drawer. Do you have the same problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Alba</title>
		<link>http://justaddwater.dk/2009/12/08/how-to-add-open-folder-in-textmate-to-finder-context-menu/comment-page-1/#comment-491481</link>
		<dc:creator>Joe Alba</dc:creator>
		<pubDate>Tue, 08 Dec 2009 17:58:01 +0000</pubDate>
		<guid isPermaLink="false">http://justaddwater.dk/?p=1252#comment-491481</guid>
		<description>Great tip!  I&#039;ve been looking for this feature for a while now.

But for some reason, it isn&#039;t working for me.  I followed the steps, but this service does not appear when I right-click a folder.

I checked my ~/Library/Services folder, and the service I created was saved as &#039;Open in TextMate.workflow&#039; 

Got any tips that could help me out?  Does your service wind up with the .workflow extension also?

(I&#039;m running Snow Leopard -- upgraded from Leopard, not a fresh install.)</description>
		<content:encoded><![CDATA[<p>Great tip!  I&#8217;ve been looking for this feature for a while now.</p>
<p>But for some reason, it isn&#8217;t working for me.  I followed the steps, but this service does not appear when I right-click a folder.</p>
<p>I checked my ~/Library/Services folder, and the service I created was saved as &#8216;Open in TextMate.workflow&#8217; </p>
<p>Got any tips that could help me out?  Does your service wind up with the .workflow extension also?</p>
<p>(I&#8217;m running Snow Leopard &#8212; upgraded from Leopard, not a fresh install.)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

