- Plan text - adjust the background color to RGB(228, 228, 228)
- Brace Matching RGB(0, 185, 0)
- Brace Matching (Rectangle) RGB(0, 128, 0)
- Hightlighted Definition RGB(185, 194, 154)
- Hightlighted Reference RGB(249, 182, 100)
- Preprocessor keyword
- User Types - xxx
ColorThemeEditor.vsix - to change the VS color scheme.
https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.VisualStudio2015ColorThemeEditor
VisualCommander_263.vsix - to automate some text to be injected and binding the command to shortcut key.
https://marketplace.visualstudio.com/items?itemName=SergeyVlasov.VisualCommander
Sample code to inject current date, time & my name to the text editor:
Sub Run(DTE As EnvDTE80.DTE2, package As Microsoft.VisualStudio.Shell.Package) Implements VisualCommanderExt.ICommand.Run
Dim textSelection As EnvDTE.TextSelection
textSelection = CType(DTE.ActiveDocument.Selection(), EnvDTE.TextSelection)
textSelection.Text = "//" + System.DateTime.Now.ToString("d.MMM.yy") + ", myName-"
End Sub
Don't forget to customize the "keyboard" and bind it to any shortcut that you like. As for myself, I reset CTRL+[0 to 9] and bind it with my command.