We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c45266 commit 9aab002Copy full SHA for 9aab002
1 file changed
extensions/markdown-language-features/src/features/workspaceSymbolProvider.ts
@@ -102,7 +102,7 @@ class VSCodeWorkspaceMarkdownDocumentProvider extends Disposable implements Work
102
});
103
}
104
105
- return Promise.resolve({
+ return {
106
uri: resource,
107
version: 0,
108
lineCount: lineCount,
@@ -112,7 +112,7 @@ class VSCodeWorkspaceMarkdownDocumentProvider extends Disposable implements Work
112
getText: () => {
113
return text;
114
115
- });
+ };
116
117
118
0 commit comments