Skip to content

Commit fcf72fc

Browse files
committed
add debug removeme
1 parent 68aa57e commit fcf72fc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/static/js/monaco_editor.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ function insertTextAtCursor(text) {
5959
range: new monaco.Range(position.lineNumber, position.column, position.lineNumber, position.column),
6060
text: text
6161
}]);
62-
62+
console.log("Inserted text:", text);
63+
6364
// Move cursor to end of inserted text
6465
const newPosition = new monaco.Position(position.lineNumber, position.column + text.length);
6566
workspaceMonacoEditor.setPosition(newPosition);

0 commit comments

Comments
 (0)