[#7353] added missing : char to the autocomplete regex

Co-authored-by: jb.muscat <jb.muscat@criteo.com>
This commit is contained in:
Gani Georgiev
2025-12-02 07:55:22 +02:00
parent 90d896e1cc
commit 2e5f8bff63
33 changed files with 44 additions and 39 deletions

View File

@@ -244,7 +244,7 @@
// Returns object with all the completions matching the context.
function completions(context) {
let word = context.matchBefore(/[\'\"\@\w\.]*/);
let word = context.matchBefore(/[\'\"\@\w\.\:]*/);
if (word && word.from == word.to && !context.explicit) {
return null;
}