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 e332fd4 commit 557dbf1Copy full SHA for 557dbf1
playground/next/editor.mjs
@@ -136,9 +136,6 @@ function completeJSONLDTerms(context) {
136
const nodeBefore = syntaxTree(context.state).resolveInner(context.pos, -1);
137
const nearestProperty = getNearestPropertyName(context.state, context.pos);
138
139
- console.log('nearest property name', nearestProperty);
140
- console.log(nodeBefore.name, nodeBefore._parent?.name, nodeBefore);
141
-
142
const textBefore = context.state.sliceDoc(nodeBefore.from, context.pos);
143
const tagBefore = /@\w*$/.exec(textBefore);
144
if (!tagBefore && !context.explicit
0 commit comments