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.
1 parent 9a25c78 commit 7e92176Copy full SHA for 7e92176
src/features/json/jsonContributions.ts
@@ -45,7 +45,7 @@ export function addJSONProviders(): Disposable {
45
let contributions = [new ProjectJSONContribution(xhr)];
46
contributions.forEach(contribution => {
47
let selector = contribution.getDocumentSelector();
48
- subscriptions.push(languages.registerCompletionItemProvider(selector, new JSONCompletionItemProvider(contribution)));
+ subscriptions.push(languages.registerCompletionItemProvider(selector, new JSONCompletionItemProvider(contribution), '"', ':'));
49
subscriptions.push(languages.registerHoverProvider(selector, new JSONHoverProvider(contribution)));
50
});
51
0 commit comments