<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Skypher &#187; notepad++</title>
	<atom:link href="http://skypher.com/index.php/tag/notepad/feed/" rel="self" type="application/rss+xml" />
	<link>http://skypher.com</link>
	<description>The blog for absolutely nothing!</description>
	<lastBuildDate>Sat, 19 Nov 2011 22:09:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Function list for PHP</title>
		<link>http://skypher.com/index.php/2008/07/28/function-list-for-php/</link>
		<comments>http://skypher.com/index.php/2008/07/28/function-list-for-php/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 10:18:36 +0000</pubDate>
		<dc:creator>Cipher</dc:creator>
				<category><![CDATA[notepad++]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[function list]]></category>
		<category><![CDATA[n++]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://skypher.com/?p=28</guid>
		<description><![CDATA[<br />
<b>Warning</b>:  preg_split() [<a href='function.preg-split'>function.preg-split</a>]: Compilation failed: lookbehind assertion is not fixed length at offset 14 in <b>/home/c3682jgn/domains/skypher.com/public_html/wp-content/themes/braille/options/plugins.php</b> on line <b>77</b><br />
<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/c3682jgn/domains/skypher.com/public_html/wp-content/themes/braille/options/plugins.php</b> on line <b>78</b><br />
]]></description>
			<content:encoded><![CDATA[<p>Jens Lorenz&#8217; function list plugin is a very handy tool!</p>
<p>After installation, there are a few things you need to customize. For php this is what I did:</p>
<ol>
<li>Open a php file with some functions</li>
<li>Go to Plugins-&gt;Function List-&gt;Language Parsing Rules</li>
<li>Click PHP and the &#8216;add group&#8217; button</li>
<li>Under group rules add the following (without the quotes):
<ol>
<li>function start: &#8220;[\t]*function &#8220;</li>
<li>function name: &#8220;[\w]*&#8221;</li>
<li>function end: &#8220;\(&#8220;</li>
</ol>
</li>
<li> and click &#8216;Try&#8217; and view your list being created.</li>
<li>If you like what you see, click ok if not, you can fiddle with the regex.</li>
</ol>
<p>Keep in mind that this might be different with your code convention, in that case, you&#8217;ll have to adjust the second (function name) regex.</p>
<p>At my current job we don&#8217;t have that much objects and classes, so I&#8217;ll see if i can whiff up a class based regex later.</p>
<p><strong>[edit]</strong><br />
More posts about Notepad++ can be found here: <a title="Notepad++ tag on Skypher.com" href="http://skypher.com/index.php/tag/notepad/">Notepad++  customization</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://skypher.com/index.php/2008/07/28/function-list-for-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Notepad++ 5.0</title>
		<link>http://skypher.com/index.php/2008/07/11/notepad-50/</link>
		<comments>http://skypher.com/index.php/2008/07/11/notepad-50/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 13:16:08 +0000</pubDate>
		<dc:creator>Cipher</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[completion]]></category>
		<category><![CDATA[ctrl+enter]]></category>
		<category><![CDATA[notepad++]]></category>
		<category><![CDATA[quicktext]]></category>

		<guid isPermaLink="false">http://skypher.com/?p=25</guid>
		<description><![CDATA[<br />
<b>Warning</b>:  preg_split() [<a href='function.preg-split'>function.preg-split</a>]: Compilation failed: lookbehind assertion is not fixed length at offset 14 in <b>/home/c3682jgn/domains/skypher.com/public_html/wp-content/themes/braille/options/plugins.php</b> on line <b>77</b><br />
<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/c3682jgn/domains/skypher.com/public_html/wp-content/themes/braille/options/plugins.php</b> on line <b>78</b><br />
]]></description>
			<content:encoded><![CDATA[<p>Notepad++ released 5.0 some time ago, and recently a rebuffed version. It&#8217;s looking good!</p>
<p>I have some small adjustments for myself and maybe for you.</p>
<p>[ctrl]+[enter] now opens the function suggest by default which was the QuickText Replacer. Look in the shortcutmapper for this one (#36), just clear it and you&#8217;re back to normal.</p>
<p>The new function hinting system is great. I wish there was a way to add () when inserting a function name, and move the cursor in the brackets. Additionally, some comment on the function&#8217;s use would be helpful on hovering.</p>
<p>I noticed some people were coming to my site to find out how to change the font size, well, this is easy, just hit [ctrl] and scroll your mouse!</p>
<p>For entering some Quicktext please see my <a href="http://skypher.com/wiki/index.php?title=Quicktext.ini">Quicktext Wiki</a>.</p>
<p><strong>[edit]<br />
</strong>Don&#8217;t forget to install the Quicktext plugin which you can find <a title="Quicktext plugin by alphpt." href="http://sourceforge.net/project/downloading.php?group_id=183263&amp;use_mirror=heanet&amp;filename=QuickText-0.2-win32dll.rar&amp;90736719" target="_blank">here</a>.</p>
<p>More posts about Notepad++ can be found here: <a title="Notepad++ tag on Skypher.com" href="http://skypher.com/index.php/tag/notepad/">Notepad++  customization</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://skypher.com/index.php/2008/07/11/notepad-50/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Notepad++ &amp; PHP</title>
		<link>http://skypher.com/index.php/2008/04/16/notepad-php/</link>
		<comments>http://skypher.com/index.php/2008/04/16/notepad-php/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 17:23:18 +0000</pubDate>
		<dc:creator>Cipher</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[notepad++]]></category>
		<category><![CDATA[suggestion]]></category>

		<guid isPermaLink="false">http://skypher.com/?p=4</guid>
		<description><![CDATA[<br />
<b>Warning</b>:  preg_split() [<a href='function.preg-split'>function.preg-split</a>]: Compilation failed: lookbehind assertion is not fixed length at offset 14 in <b>/home/c3682jgn/domains/skypher.com/public_html/wp-content/themes/braille/options/plugins.php</b> on line <b>77</b><br />
<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/c3682jgn/domains/skypher.com/public_html/wp-content/themes/braille/options/plugins.php</b> on line <b>78</b><br />
]]></description>
			<content:encoded><![CDATA[<p>For my coding I use Notepad++. I really like the personal settings and features of this editor. However, it somewhat lacks in code support. Having worked with Zend Studio, Dreamweaver, Eclipse and the likes, I found that code suggestion is a really nice feature.</p>
<p>For functions you don&#8217;t use all the time, you might forget what the parameters are, or in which sequence they are to be given. At least I do. The editors mentioned above have a feature where it can suggest a function on the go. So does Notepad++. But (afaik) Zend and Dreamweaver also suggest the parameters. Which N++ does not.</p>
<p>The &#8216;api&#8217; for N++ lacks the parameter suggestion. But I wrote a little script which added the parameters to the file.</p>
<p>You can download a copy of php.api <a title="php.api" href="http://www.skypher.com/Cipher/php.api" target="_blank">here</a>.(use &#8216;save target as&#8217;)</p>
<p>Please note that using the suggestion will result in the description text of the parameters to be added as well. So for now, just use the suggestions as guidance.</p>
<p>To use this file i suggest to set the following settings:<br />
auto-completion enabled on function, starting from 2 charatures (or it will drive you insane with spaces and tabs)</p>
<p>Also, as a tip, you can use Ctrl+shift+space to complete variables in your file.</p>
<p><strong>[edit]</strong><br />
More posts about Notepad++ can be found here: <a title="Notepad++ tag on Skypher.com" href="http://skypher.com/index.php/tag/notepad/">Notepad++  customization</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://skypher.com/index.php/2008/04/16/notepad-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

