<?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: using javascript folds in vim</title>
	<atom:link href="http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/feed/" rel="self" type="application/rss+xml" />
	<link>http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/</link>
	<description>php, linux, ajax, javascript, kae verens</description>
	<lastBuildDate>Fri, 05 Mar 2010 01:53:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ray Burgemeestre</title>
		<link>http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/comment-page-1/#comment-18427</link>
		<dc:creator>Ray Burgemeestre</dc:creator>
		<pubDate>Sat, 29 Jul 2006 20:19:58 +0000</pubDate>
		<guid isPermaLink="false">http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/#comment-18427</guid>
		<description>I created a VIM script called phpfolding.vim on vim.org and it folds php functions and classes. It supports PHPDoc API comments too, like the following function:

/**
* This does foo and bar
* @param bar some description
*/
function foo($bar)
{
    // ...
}

Is folded into this:

+--  9 lines function foo($bar)---------------------------------------

As a PHP developer I use this alot and thought people might find this useful. You can find it here: http://www.vim.org/scripts/script.php?script_id=1623</description>
		<content:encoded><![CDATA[<p>I created a VIM script called phpfolding.vim on vim.org and it folds php functions and classes. It supports PHPDoc API comments too, like the following function:</p>
<p>/**<br />
* This does foo and bar<br />
* @param bar some description<br />
*/<br />
function foo($bar)<br />
{<br />
    // &#8230;<br />
}</p>
<p>Is folded into this:</p>
<p>+&#8211;  9 lines function foo($bar)&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>As a PHP developer I use this alot and thought people might find this useful. You can find it here: <a href="http://www.vim.org/scripts/script.php?script_id=1623" rel="nofollow">http://www.vim.org/scripts/script.php?script_id=1623</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: quatroparedes &#187; Blog Archive &#187; Vim goodies</title>
		<link>http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/comment-page-1/#comment-2075</link>
		<dc:creator>quatroparedes &#187; Blog Archive &#187; Vim goodies</dc:creator>
		<pubDate>Fri, 16 Sep 2005 16:21:17 +0000</pubDate>
		<guid isPermaLink="false">http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/#comment-2075</guid>
		<description>[...] Comfortable PHP editing with VIM Using javascript folds in vim [...]</description>
		<content:encoded><![CDATA[<p>[...] Comfortable PHP editing with VIM Using javascript folds in vim [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Holy Shmoly! :: Vim folding redux</title>
		<link>http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/comment-page-1/#comment-1726</link>
		<dc:creator>Holy Shmoly! :: Vim folding redux</dc:creator>
		<pubDate>Wed, 03 Aug 2005 12:11:13 +0000</pubDate>
		<guid isPermaLink="false">http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/#comment-1726</guid>
		<description>[...] Vim folding is so handy as Kae found out ages ago. I finally tried it again this morning..     Related Stories (vim, folding, redux) [...]</description>
		<content:encoded><![CDATA[<p>[...] Vim folding is so handy as Kae found out ages ago. I finally tried it again this morning..     Related Stories (vim, folding, redux) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; neatly indented folds in vim &#171; klog</title>
		<link>http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/comment-page-1/#comment-1699</link>
		<dc:creator>&#187; neatly indented folds in vim &#171; klog</dc:creator>
		<pubDate>Tue, 12 Jul 2005 12:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/#comment-1699</guid>
		<description>[...] If, like me, you use tabs for indenting your code, then you may have been annoyed to find that the amazing folds capability in vim indents its collapsed lines by default with spaces. [...]</description>
		<content:encoded><![CDATA[<p>[...] If, like me, you use tabs for indenting your code, then you may have been annoyed to find that the amazing folds capability in vim indents its collapsed lines by default with spaces. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PaulG</title>
		<link>http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/comment-page-1/#comment-1471</link>
		<dc:creator>PaulG</dc:creator>
		<pubDate>Wed, 04 May 2005 08:20:49 +0000</pubDate>
		<guid isPermaLink="false">http://verens.com/archives/2005/04/18/using-javascript-folds-in-vim/#comment-1471</guid>
		<description>Great post.

Don&#039;t think I got all of it, but went running off to find out about folding.  Isn&#039;t that the smartest thing you ever saw!  Gobsmacking.

I even got the &quot;let php_folding=1&quot; line (Note let not &quot;set php_...&quot;) added to my .vimrc file so all existing scripts fold up automatically without me doing a damn thing.  

Thks for the heads up!</description>
		<content:encoded><![CDATA[<p>Great post.</p>
<p>Don&#8217;t think I got all of it, but went running off to find out about folding.  Isn&#8217;t that the smartest thing you ever saw!  Gobsmacking.</p>
<p>I even got the &#8220;let php_folding=1&#8243; line (Note let not &#8220;set php_&#8230;&#8221;) added to my .vimrc file so all existing scripts fold up automatically without me doing a damn thing.  </p>
<p>Thks for the heads up!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
