This worked perfectly so far.
??? is now highlighted in all documents.
Here is my setting file, with regex pattern.
thanks again
Rob
/Users/YourNameLibrary/Application Support/Sublime Text 2/Packages/PersistentRegexHighlight/PersistentRegexHighlight.sublime-settings
{
// Please see the README for more information on settings.
// Array of objects containing a regular expression
// and an optional coloring scheme
"regex":{
"pattern": "?]?]?]",
"color_scope": "color.scope.name",
"ignore_case": true
}]
,
// If highlighting is enabled
"enabled": true,
// If highlighting should occur when a view is loaded
"on_load": true,
// If highlighting should occur as modifications happen
"on_modify": true,
// File pattern to disable on. Should be specified as Unix style patterns
// Note, this looks at the absolute path to match the pattern. So if trying
// ignore a single file (e.g. README.md), you will need to specify "**/README.md"
"disable_pattern": ],
// Maximum file size to run the the PersistentRegexHighlight on.
// Any value less than or equal to zero will be treated as a non limiting value.
"max_file_size": 0
}