I'm looking for a way to highlight TODOs and TODO-like in Sublime text.
I tried Linter and SublimeLinter-annotations but I cannot find a way or a clear documentation to better highlight the TODO line.
I put this in the SublimeLinter.sublime-settings:
// SublimeLinter Settings - User
{
// "debug": true,
"linters": {
"annotations": {
"infos": ["TODO"],
"warnings": ["WARNING"],
"errors": ["ERROR"],
"mark_message": true,
},
}
}
with this result:
More on large files, for me, this highlight isn't clearly visible.
How to?
- set the foreground and background colors of the whole comment line
- highlight also multi-line comments like
/* TODO ... \n ... */
Other than TODOs, I need to highlight also // TEST and // INFO comments with different colors.
I already tried SublimeTODO but it highlights also nested comments.



You can try with new custom
.tmThemecolor scheme file:CustomColorScheme.tmTheme:Then add the custom scheme path to the default settings file or user-specific settings file located at
SublimeLinter.sublime-settingsReference Link