Fix word boundary in the custom highlights regex not matching unicode
Fixes #1939
This commit is contained in:
parent
b7072c8955
commit
3cd8ce6514
@ -146,7 +146,7 @@ function applySetting(name, value) {
|
||||
});
|
||||
|
||||
if (highlightsTokens && highlightsTokens.length) {
|
||||
module.exports.highlightsRE = new RegExp("\\b(?:" + highlightsTokens.join("|") + ")\\b", "i");
|
||||
module.exports.highlightsRE = new RegExp(`(?:^| |\t)(?:${highlightsTokens.join("|")})(?:\t| |$)`, "i");
|
||||
} else {
|
||||
module.exports.highlightsRE = null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user