fix: autocompletion eating non-identifier tokens

This commit is contained in:
Andrew Bastin
2021-09-13 09:18:37 +05:30
parent 631b2d869e
commit c26f7f5ebc

View File

@@ -97,6 +97,9 @@ export function useCodemirror(
const text = editor.getValue()
const token = editor.getTokenAt(pos)
// It's not a word token, so, just increment to skip to next
if (token.string.toUpperCase() === token.string.toLowerCase())
token.start += 1
const result = await options.completer!(text, pos)