It's distracting to me to see keywords like class, for, while in bright blue, but also to have nullptr in bright blue. It draws attention to the word "nullptr". Is there any way to override VS's coloring for just this word?
Right now I am using #define null nullptr , which is a workaround at least for my own code.
Best How To :
Visual Studio doesn't allow you override keyword coloring feature. There is no direct way! However, It is possible by writing your own Syntax Colorizing plugin.
Find more information here: Syntax Colorizing (Managed Package Framework)
You can filter nullptr
keyword in ScanTokenAndProvideInfoAboutIt
() function.