TL;DR version: I'm looking for a way to custom style specific keywords of PHP (and perhaps other languages, such as JavaScript). Google has failed me.
Long version:
I've recently started using Notepad++ in a bid to break out of my comfort zone with Dreamweaver, the IDE I've been using for the past five or six years. My biggest problem though is I'm extremely picky about syntax highlighting, probably due to the fact that I'm so used to the way Dreamweaver does it.
Notepad++ provides a theme editor and a bunch of options to change the styles of languages, and it works great; however, it "groups" together keywords (and doesn't recognize others which puzzles me) when in my opinion it shouldn't.
For example, in Dreamweaver, certain keywords such as if, else, return, true, false, switch, etc. are coloured green. PHP defined functions, like strlen, trim, in_array, etc. are coloured blue. They're both keywords but they're also obviously both different. They're used in different contexts (I believe keywords such as if, else, etc. are called constructs and the others are functions).
In Notepad++, it colours these words the same. Whatever colour you choose for colouring functions, it also uses to colour reserved words like if, else, return, etc. Since I am so used to them being different, it kind of messes with me and makes me want to drop Notepad++ like a bad habit and go back to Dreamweaver.
At first I thought I'd just ignore it and chalk it up to "breaking out of my comfort zone", but then I kept thinking about and I sincerely think they should be coloured differently. Simply put, they're used differently. I've looked into plugins and searched Google but haven't found anything other than people uploading their own custom styles, which doesn't solve this problem (it just colours it in a different way :p).
Does anyone know of a way to create custom styles for specific keywords?
I'm going to stick it out with Notepad++ regardless to finish a mini-project, but once the project is finished I won't continue with it if I can't find a way to do this. 🙁
Thanks in advance for any insight!