bumped min go action version and added missing : char to the autocomplete regex

This commit is contained in:
Gani Georgiev
2025-12-02 19:37:39 +02:00
parent 9014604506
commit 37601fe2de
36 changed files with 50 additions and 43 deletions
@@ -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;
}