Notepad++ is probably the best developer tool you got when it comes to web programming - Clean and simple.
I recently installed a new plugin for the BigMachines BML language - read more about how to do that . Works great by the way!
Today when I was creating a new library function for the commerce process I started to annoy myself that the color of the single line commenting were so much brighter than the block comment and hard to read. Now, instead of keep being annoyed we could do something about it and it's very simple.
- Open the file ' userDefineLang.xml' which should be located in %APPDATA%\Notepad++.
- There's a tag named 'Styles' which child tags are named 'WordsStyle'. The one with name 'COMMENT LINE' is the one I want to change the color of. So I just copy the color of the block comment tag (with name 'COMMENT') and use for the line comment tag instead. Should look like this:
| <WordsStyle name="COMMENT LINE" styleID="2" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="0" /> |
Save and restart and we're done!