Trigger completions on backticks in JS/TS (#80234)

This commit is contained in:
Andrii Dieiev 2019-11-05 00:55:07 +02:00 committed by Matt Bierner
parent 00e2ad9760
commit a188b905c6

View file

@ -328,7 +328,7 @@ namespace CompletionConfiguration {
class TypeScriptCompletionItemProvider implements vscode.CompletionItemProvider {
public static readonly triggerCharacters = ['.', '"', '\'', '/', '@', '<'];
public static readonly triggerCharacters = ['.', '"', '\'', '`', '/', '@', '<'];
constructor(
private readonly client: ITypeScriptServiceClient,