fix(web): markdown list auto-completion creates new line correctly

Fix issue where pressing Enter on a markdown list item would append
the list symbol to the current line instead of creating a new line.

The fix adds event.preventDefault() to stop the default Enter behavior
and prepends a newline character to the inserted list continuation text.

Fixes #5236
This commit is contained in:
Claude 2025-11-08 02:37:08 +00:00
parent c54fcf7aa7
commit 5243e2963c
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

View File

@ -164,7 +164,8 @@ const Editor = forwardRef(function Editor(props: Props, ref: React.ForwardedRef<
// Detect list item using regex-based detection // Detect list item using regex-based detection
const listInfo = detectLastListItem(prevContent); const listInfo = detectLastListItem(prevContent);
if (listInfo.type) { if (listInfo.type) {
const insertText = generateListContinuation(listInfo); event.preventDefault();
const insertText = "\n" + generateListContinuation(listInfo);
editorActions.insertText(insertText); editorActions.insertText(insertText);
} }
} }