We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08e542a commit 3290301Copy full SHA for 3290301
src/features/dfdElements/outputPortEditUi.ts
@@ -233,10 +233,6 @@ class MonacoEditorDfdBehaviorCompletionProvider implements monaco.languages.Comp
233
const openBraceIndex = line.indexOf("{");
234
const closingBraceIndex = line.indexOf("}");
235
236
- console.log("Moin" + column);
237
- console.log("Moin" + openBraceIndex);
238
- console.log("Moin" + closingBraceIndex);
239
- console.log("Moin" + (openBraceIndex !== -1 && (closingBraceIndex === -1 || column <= closingBraceIndex)));
240
// If the first semicolon hasn't been typed yet, assume we're inside the input list
241
if (openBraceIndex !== -1 && (closingBraceIndex === -1 || column <= closingBraceIndex + 1)) {
242
// Inside `{List of available inputs}` section
0 commit comments