Here it is.

Coding, Humans and where it all goes wrong.

Category: vim

Top 8 Vim Plugins

Why 8? Because after much tidying I figured out there’s 8 I only use.
1 ) CheckSyntax – Check the syntax of the current file. Handy it automatically runs on save.

2 ) SearchComplete – Type part of a variable name, press tab and it will auto-complete the name.

3 ) MatchIt – Extends % with [...]

Php Beautifier

Why?
When you’re faced with an ugly PHP file(or files) with little to do but trawl through it, there is a solution.
Php beautifier is a pear package that will process PHP files and reformat them in a (hopefully) nicer format.
Installation
You can install it using pear with a very simple
pear install PHP_Beautifier

Usage
Usage is pretty dependent on your [...]