fix: external newline

This commit is contained in:
johnnyjoy
2025-06-04 21:28:58 +08:00
parent efb8e7ab0c
commit 8d9396247b

View File

@@ -211,8 +211,8 @@ const Editor = forwardRef(function Editor(props: Props, ref: React.ForwardedRef<
// inserting the insertText.
// Needs to be called before any async call.
event.preventDefault();
// Insert the text at the current cursor position
editorActions.insertText("\n" + insertText);
// Insert the text at the current cursor position.
editorActions.insertText(insertText);
}
}
};