Notepad ++ and Fingertext Plugin

pickledegg

New member
Nov 9, 2008
1,192
20
0
chrisjallen.com
I felt the need to post this, its the most awesome coding tool I've ever found, (save when I discovered textmate bundles).

Fingertext lets you insert code snippets with tabbed triggers, for example I set up a lot of sites and if I type 'virtualhost' + tab, it inserts

Code:
<VirtualHost *:80>
    ServerName $[![]!]
    ServerAlias $[![]!]
    DocumentRoot "$[![]!]"
  <Directory "$[![]!]">
    IndexOptions +FancyIndexing NameWidth=*
    Options Includes FollowSymLinks Indexes
    AllowOverride All
    Order allow,deny
    Allow from all
  </Directory>
</VirtualHost>

The '$[![]!]' parts are called hotspots so you can tab through and edit each part at speed.

Heres a screencast I found which explains a little:

Screencast by trusktr from Screenr.com - YouTube
 
  • Like
Reactions: dmnEPC


Twitted about this a few weeks back, shit is amazing. Don't know how I lived without it. Might switch to Sublime Text when its comes out of beta though, looks pretty beast.
 
I'll throw in Zen coding

expands this:

Code:
div#page>div.logo+ul#navigation>li*5>a

to this

Code:
<div id="page">
        <div class="logo"></div>
        <ul id="navigation">
                <li><a href=""></a></li>
                <li><a href=""></a></li>
                <li><a href=""></a></li>
                <li><a href=""></a></li>
                <li><a href=""></a></li>
        </ul>
</div>

::emp::