I can\'t seem to make getCompletions function to trigger in my custom completer when using custom prefix extraction regex identifierRegexps
Basica
In the ext-language-tools.js file,
Replace var ID_REGEX = /[a-zA-Z_0-9\$\-\u00A2-\uFFFF]/;
var ID_REGEX = /[a-zA-Z_0-9\$\-\u00A2-\uFFFF]/;
to
var ID_REGEX = /[a-zA-Z_0-9\.\$\-\u00A2-\uFFFF]/;
With the above ID_REGEX the autocomplete will now trigger on periods (.)