You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 9, 2021. It is now read-only.
/**
* The primary text to be inserted is treated as a snippet.
*
* A snippet can define tab stops and placeholders with `$1`, `$2`
* and `${3:foo}`. `$0` defines the final tab stop, it defaults to
* the end of the snippet. Placeholders with equal identifiers are linked,
* that is typing in one will update others too.
*/
export const Snippet = 2;
The text was updated successfully, but these errors were encountered:
The completion request always returns snippet-type completions, even if the client initialisation request doesn't claim to support them.
Logs:
snippetSupport: true
which should be interpreted as not supporting snippets (only plaintext)Note:
"insertTextFormat":2
is 'snippet' :The text was updated successfully, but these errors were encountered: