// HightlightWords.sublime-settings { // The colors to highlight texts are specified by a list of theme scope names, // and HighlightWords uses this list in circular order. "colors_by_scope": [ "string", "entity.name.class", "markup.heading", "markup.bold", "variable.parameter", "invalid.deprecated", "invalid", "support.function", ], "whole_word": false, "use_regex": false, "ignore_case": false, // Keywords to be always highlighted, clear the list to disable it. // "keyword" are literally matched, and "color" refers to theme scope names. // "flag": 0 - regex, 1 - literal (default), 2 - regex and ignore case, 3 - literal and ignore case // Note that json has some special characters like '\' should be escaped. "permanent_highlight_keyword_color_mappings": [ {"keyword": "(XXX|HOWTO|DEBUG|FIXED)", "color": "invalid.deprecated", "flag": 2}, // {"keyword": "(https?|ftp|file|ssh)://", "color": "string", "flag": 2}, // {"keyword": "(lbesson|besson|naereen|lilian)", "color": "string", "flag": 2}, {"keyword": "(DONE|NOPE)", "color": "string", "flag": 2}, {"keyword": "TODO", "color": "markup.heading", "flag": 3}, {"keyword": "WARNING", "color": "entity.name.class", "flag": 3}, {"keyword": "FIXME.*", "color": "invalid", "flag": 2}, ] }