Skip to content

Commit

Permalink
fix: Resolved issue
Browse files Browse the repository at this point in the history
 where manually triggered a
utocompletes are empty.

Closes #109
  • Loading branch information
adam-coster committed Jul 11, 2023
1 parent 8a583ed commit ce359aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vscode/src/extension.provider.mts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export class StitchProvider
return;
} else if (jsdoc) {
return jsdocCompletions(document, position, gmlFile, jsdoc);
} else if (context.triggerCharacter === '.') {
} else if (context.triggerCharacter === '.' || !context.triggerCharacter) {
const items = gmlFile.getInScopeSymbolsAt(offset);
return inScopeSymbolsToCompletions(document, items);
}
Expand Down

0 comments on commit ce359aa

Please sign in to comment.