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 4383020 commit a61fcc9Copy full SHA for a61fcc9
packages/editor-codemirror/src/behaviors/completion.ts
@@ -225,9 +225,6 @@ async function getCompletions(
225
const token = context.matchBefore(/\S+/)?.text;
226
227
const filteredItems = items.filter(item => {
228
- // no namespaces
229
- if (vsKindToType(item.kind) === 'namespace') return false;
230
-
231
// no text completions that aren't snippets
232
if (item.kind === CompletionItemKind.Text &&
233
item.insertTextFormat !== InsertTextFormat.Snippet) return false;
0 commit comments