<?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: Context sensitive auto-completion using PowerShell, PowerTab and GIT</title>
	<atom:link href="http://allyourcodearebelongto.me/blog/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/feed/" rel="self" type="application/rss+xml" />
	<link>http://allyourcodearebelongto.me/blog/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/</link>
	<description>All About Everything</description>
	<lastBuildDate>Mon, 07 Dec 2009 09:03:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: techblogger</title>
		<link>http://allyourcodearebelongto.me/blog/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/comment-page-1/#comment-45</link>
		<dc:creator>techblogger</dc:creator>
		<pubDate>Tue, 14 Oct 2008 03:15:55 +0000</pubDate>
		<guid isPermaLink="false">http://techblogging.wordpress.com/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/#comment-45</guid>
		<description>@Doug: I will be looking forward to your post again :)</description>
		<content:encoded><![CDATA[<p>@Doug: I will be looking forward to your post again :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://allyourcodearebelongto.me/blog/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/comment-page-1/#comment-46</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Tue, 14 Oct 2008 03:01:46 +0000</pubDate>
		<guid isPermaLink="false">http://techblogging.wordpress.com/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/#comment-46</guid>
		<description>Great creative idea. I took your GIT post and did it for Subversion.

http://dougfinke.com/blog/?p=488

Looks like I need to copy you again :)</description>
		<content:encoded><![CDATA[<p>Great creative idea. I took your GIT post and did it for Subversion.</p>
<p><a href="http://dougfinke.com/blog/?p=488" rel="nofollow">http://dougfinke.com/blog/?p=488</a></p>
<p>Looks like I need to copy you again :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: techblogger</title>
		<link>http://allyourcodearebelongto.me/blog/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/comment-page-1/#comment-47</link>
		<dc:creator>techblogger</dc:creator>
		<pubDate>Tue, 14 Oct 2008 02:48:17 +0000</pubDate>
		<guid isPermaLink="false">http://techblogging.wordpress.com/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/#comment-47</guid>
		<description>Thanks for the Tips MOW.
I will surely try out Invoke-TabExpansionEditor and update this post.

Yes I noticed that you can add custom auto-completion using the ^ character. But that is one extra character to type. I will look for a cleaner way to add this functionality.</description>
		<content:encoded><![CDATA[<p>Thanks for the Tips MOW.<br />
I will surely try out Invoke-TabExpansionEditor and update this post.</p>
<p>Yes I noticed that you can add custom auto-completion using the ^ character. But that is one extra character to type. I will look for a cleaner way to add this functionality.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: /\/\o\/\/</title>
		<link>http://allyourcodearebelongto.me/blog/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/comment-page-1/#comment-44</link>
		<dc:creator>/\/\o\/\/</dc:creator>
		<pubDate>Mon, 13 Oct 2008 20:42:14 +0000</pubDate>
		<guid isPermaLink="false">http://techblogging.wordpress.com/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/#comment-44</guid>
		<description>PS. another thing I noted

you can use custom additions to Powertab Without editing the source by using ^[tab] behind the filter

e.g.

git^[tab]

you can change this shortcut here :

$PowerTabConfig.ShortcutChars

CustomFunction : #
Invoke         : &amp;
Custom         : ^
Alias          : @
Partial        : %
Native         : !

Greetings again,
/\/\o\/\/</description>
		<content:encoded><![CDATA[<p>PS. another thing I noted</p>
<p>you can use custom additions to Powertab Without editing the source by using ^[tab] behind the filter</p>
<p>e.g.</p>
<p>git^[tab]</p>
<p>you can change this shortcut here :</p>
<p>$PowerTabConfig.ShortcutChars</p>
<p>CustomFunction : #<br />
Invoke         : &amp;<br />
Custom         : ^<br />
Alias          : @<br />
Partial        : %<br />
Native         : !</p>
<p>Greetings again,<br />
/\/\o\/\/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: /\/\o\/\/</title>
		<link>http://allyourcodearebelongto.me/blog/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/comment-page-1/#comment-43</link>
		<dc:creator>/\/\o\/\/</dc:creator>
		<pubDate>Mon, 13 Oct 2008 20:37:30 +0000</pubDate>
		<guid isPermaLink="false">http://techblogging.wordpress.com/2008/10/13/context-sensitive-auto-completion-using-powershell-powertab-and-git/#comment-43</guid>
		<description>Great stuff !

a tip, try

Invoke-TabExpansionEditor

and see if you like that better to change the database.

Enjoy,
Greetings /\/\o\/\/</description>
		<content:encoded><![CDATA[<p>Great stuff !</p>
<p>a tip, try</p>
<p>Invoke-TabExpansionEditor</p>
<p>and see if you like that better to change the database.</p>
<p>Enjoy,<br />
Greetings /\/\o\/\/</p>
]]></content:encoded>
	</item>
</channel>
</rss>

