The snippets file loads 22 autocompletion items when it only needs to load 11. You can add multiple prefixes in an array as described in vscode snippet documentation.
Their example:
{
"For Loop": {
"prefix": ["for", "for-const"],
"body": ["for (const ${2:element} of ${1:array}) {", "\t$0", "}"],
"description": "A for loop."
}
}
The snippets file loads 22 autocompletion items when it only needs to load 11. You can add multiple prefixes in an array as described in vscode snippet documentation.
Their example:
{ "For Loop": { "prefix": ["for", "for-const"], "body": ["for (const ${2:element} of ${1:array}) {", "\t$0", "}"], "description": "A for loop." } }