We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bae639c + 544473f commit acd7f62Copy full SHA for acd7f62
src/index.ts
@@ -21,7 +21,7 @@ function init() {
21
info.languageService.getCompletionsAtPosition = (fileName, position, options) => {
22
log('getCompletionsAtPosition', { fileName, position, options });
23
const original = getCompletionsAtPosition(fileName, position, options);
24
- if (original == null) {
+ if (original == null || options?.triggerCharacter != null) {
25
return original;
26
}
27
0 commit comments