Even though it's a small request, would it be possible to add an option to turn off syntax colouring for macro parameters. I use macros quite often and due to the way I use them, it can make my code look messy with random colours appearing in them. I can give you an example:
#define BIND_SCRIPT_COMMAND(FUNCTION) \ScriptSystem::BindCommand(#FUNCTION, ScriptCallback_##FUNCTION)
BIND_SCRIPT_COMMAND(DoSomething);
The above defines a shortcut that would expand to:
ScriptSystem::BindCommand("DoSomething", ScriptCallback_DoSomething)
The problem is that as "DoSomething" is not actually a command or defined anywhere else, it comes up as white. In other situations where there is a DoSomething() function around somewhere, it will highlight the function in whatever colour is specified.
I'd just really like to be able to disable it so it just stays the default text colour within the macro params.