This may seem small but it's driving me nuts.
When I type something like this in PHP:
$foo = FALSE
...and then type the semicolon, it changes the boolean to lowercase:
$foo = false;
How can I make it stop doing that, without turning off auto-complete?
