<?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: My .zshrc file</title>
	<atom:link href="http://jeff.robbins.ws/reference/my-zshrc-file/feed" rel="self" type="application/rss+xml" />
	<link>http://jeff.robbins.ws</link>
	<description>The ramblings and interests of a thirty something admin/programmer.</description>
	<lastBuildDate>Fri, 27 Jan 2012 13:50:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: jeffro</title>
		<link>http://jeff.robbins.ws/reference/my-zshrc-file/comment-page-1#comment-3399</link>
		<dc:creator>jeffro</dc:creator>
		<pubDate>Mon, 20 Dec 2010 15:03:24 +0000</pubDate>
		<guid isPermaLink="false">http://jeff.robbins.ws/?page_id=203#comment-3399</guid>
		<description>&lt;a href=&quot;#comment-3375&quot; rel=&quot;nofollow&quot;&gt;@loot&lt;/a&gt; 

Thanks for the alternate approach loot. I use the colors in that way for two reasons. 1) Because that is how I learned to do it so that is the way I default to when I want to apply a color; and 2) I use the colors in some functions that are also part of my .zshrc file, it keeps me from having to redefine colors throughout the whole file if I feel like a change. I can see benefits and downfalls to both approaches .</description>
		<content:encoded><![CDATA[<p><a href="#comment-3375" rel="nofollow">@loot</a> </p>
<p>Thanks for the alternate approach loot. I use the colors in that way for two reasons. 1) Because that is how I learned to do it so that is the way I default to when I want to apply a color; and 2) I use the colors in some functions that are also part of my .zshrc file, it keeps me from having to redefine colors throughout the whole file if I feel like a change. I can see benefits and downfalls to both approaches .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://jeff.robbins.ws/reference/my-zshrc-file/comment-page-1#comment-3398</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Mon, 20 Dec 2010 11:22:35 +0000</pubDate>
		<guid isPermaLink="false">http://jeff.robbins.ws/?page_id=203#comment-3398</guid>
		<description>zsh/screen/vim are 3 must haves for me, actually i should say my &quot;need only&quot; group. As its all I need to get the job done =), loot that would imply they autoload colors (which I do so Ill try that).</description>
		<content:encoded><![CDATA[<p>zsh/screen/vim are 3 must haves for me, actually i should say my &#8220;need only&#8221; group. As its all I need to get the job done =), loot that would imply they autoload colors (which I do so Ill try that).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: loot</title>
		<link>http://jeff.robbins.ws/reference/my-zshrc-file/comment-page-1#comment-3375</link>
		<dc:creator>loot</dc:creator>
		<pubDate>Tue, 07 Dec 2010 22:18:50 +0000</pubDate>
		<guid isPermaLink="false">http://jeff.robbins.ws/?page_id=203#comment-3375</guid>
		<description>why not use %F{color} instead of all your aliases?</description>
		<content:encoded><![CDATA[<p>why not use %F{color} instead of all your aliases?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeffro</title>
		<link>http://jeff.robbins.ws/reference/my-zshrc-file/comment-page-1#comment-3253</link>
		<dc:creator>jeffro</dc:creator>
		<pubDate>Fri, 05 Nov 2010 17:23:08 +0000</pubDate>
		<guid isPermaLink="false">http://jeff.robbins.ws/?page_id=203#comment-3253</guid>
		<description>&lt;a href=&quot;#comment-3252&quot; rel=&quot;nofollow&quot;&gt;@Goner Leone&lt;/a&gt; 
Wow! Goner, you are my new favorite Linux geek. Thanks for posting that, it fixed that spacing issue I have been having for years! I could never figure out why. I have updated the posting with your recommendation.</description>
		<content:encoded><![CDATA[<p><a href="#comment-3252" rel="nofollow">@Goner Leone</a><br />
Wow! Goner, you are my new favorite Linux geek. Thanks for posting that, it fixed that spacing issue I have been having for years! I could never figure out why. I have updated the posting with your recommendation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Goner Leone</title>
		<link>http://jeff.robbins.ws/reference/my-zshrc-file/comment-page-1#comment-3252</link>
		<dc:creator>Goner Leone</dc:creator>
		<pubDate>Fri, 05 Nov 2010 16:11:58 +0000</pubDate>
		<guid isPermaLink="false">http://jeff.robbins.ws/?page_id=203#comment-3252</guid>
		<description>I just switched from bash to zsh and I noticed a bit of weirdness that I managed to fix, but might be causing trouble for others.

The color definitions are parsed incorrectly when using argument completion so you will see a strange gap between what you are trying to complete. For example:

$ ls --h                                                        --help

To fix this I had to wrap the color definitions with &quot;%{...%}&quot;. Now they look like this: fg_red=%{$&#039;\e[0;31m&#039;%}

This change makes sure they are non-printing characters. Now I can adopt zsh as my new shell!</description>
		<content:encoded><![CDATA[<p>I just switched from bash to zsh and I noticed a bit of weirdness that I managed to fix, but might be causing trouble for others.</p>
<p>The color definitions are parsed incorrectly when using argument completion so you will see a strange gap between what you are trying to complete. For example:</p>
<p>$ ls &#8211;h                                                        &#8211;help</p>
<p>To fix this I had to wrap the color definitions with &#8220;%{&#8230;%}&#8221;. Now they look like this: fg_red=%{$&#8217;\e[0;31m&#8217;%}</p>
<p>This change makes sure they are non-printing characters. Now I can adopt zsh as my new shell!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brie</title>
		<link>http://jeff.robbins.ws/reference/my-zshrc-file/comment-page-1#comment-2827</link>
		<dc:creator>Brie</dc:creator>
		<pubDate>Fri, 23 Apr 2010 18:33:46 +0000</pubDate>
		<guid isPermaLink="false">http://jeff.robbins.ws/?page_id=203#comment-2827</guid>
		<description>Yeah, screen is one of those things I flat out *need* to just do. Everyone raves about it but I haven&#039;t gotten around to it. I will soon. :)!

Anyway, I&#039;m adding you to my RSS reader and looking forward to reading more, Jeff! :)!

--
Brie</description>
		<content:encoded><![CDATA[<p>Yeah, screen is one of those things I flat out *need* to just do. Everyone raves about it but I haven&#8217;t gotten around to it. I will soon. <img src='http://jeff.robbins.ws/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> !</p>
<p>Anyway, I&#8217;m adding you to my RSS reader and looking forward to reading more, Jeff! <img src='http://jeff.robbins.ws/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> !</p>
<p>&#8211;<br />
Brie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeffro</title>
		<link>http://jeff.robbins.ws/reference/my-zshrc-file/comment-page-1#comment-2811</link>
		<dc:creator>jeffro</dc:creator>
		<pubDate>Wed, 21 Apr 2010 13:38:30 +0000</pubDate>
		<guid isPermaLink="false">http://jeff.robbins.ws/?page_id=203#comment-2811</guid>
		<description>&lt;a href=&quot;#comment-2810&quot; rel=&quot;nofollow&quot;&gt;@ Brie&lt;/a&gt; 

I am glad you liked it! I added a few new aliases at the bottom. I use screen A LOT any more. The screen aliases have come to be very helpful..</description>
		<content:encoded><![CDATA[<p><a href="#comment-2810" rel="nofollow">@ Brie</a> </p>
<p>I am glad you liked it! I added a few new aliases at the bottom. I use screen A LOT any more. The screen aliases have come to be very helpful..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brie</title>
		<link>http://jeff.robbins.ws/reference/my-zshrc-file/comment-page-1#comment-2810</link>
		<dc:creator>Brie</dc:creator>
		<pubDate>Wed, 21 Apr 2010 08:48:50 +0000</pubDate>
		<guid isPermaLink="false">http://jeff.robbins.ws/?page_id=203#comment-2810</guid>
		<description>I&#039;m always cruising for new prompts. I love this one. I&#039;ve added a few more aliases (like alias p=&#039;ping&#039;).

--
Brie</description>
		<content:encoded><![CDATA[<p>I&#8217;m always cruising for new prompts. I love this one. I&#8217;ve added a few more aliases (like alias p=&#8217;ping&#8217;).</p>
<p>&#8211;<br />
Brie</p>
]]></content:encoded>
	</item>
</channel>
</rss>

