docs/plans/2026-04-15-block-void-delete-vs-line-break.md
Fix suggestion-mode paragraph-start deletion so previous solitary block voids are marked as remove suggestions instead of remove line-break suggestions.
packages/suggestion/src/lib/transforms/deleteSuggestion.ts always marks the previous block with isLineBreak: true.packages/suggestion/src/lib/withSuggestion.spec.tsx reproduced the bug with a toc block void followed by a paragraph.editor.api.isVoid(previousAboveNode[0]) && !editor.api.isInline(previousAboveNode[0]) inside the existing cross-block delete path.packages/suggestion/src/lib/withSuggestion.spec.tsx.packages/suggestion build, typecheck, lint, and targeted tests.deleteSuggestion so solitary block voids receive normal block remove suggestions.docs/solutions/logic-errors/2026-04-08-suggestion-delete-backward-must-mark-inline-voids.md so it no longer claims every cross-block delete should become a line-break suggestion.