Implement Cmd+Shift+V (or Ctrl+Shift+V on Windows/Linux) as the standard shortcut for "paste without formatting."
When pasting content from external sources (web pages, documents, etc.), tldraw currently preserves rich text formatting from HTML clipboard data. There's no way to paste as plain text only, stripping all formatting. ### Problem Users copying text from websites or rich text editors often want to paste just the raw text content without formatting. Most apps support `Cmd+Shift+V` (or `Ctrl+Shift+V` on Windows/Linux) as the standard shortcut for "paste without formatting." tldraw doesn't have this. ### Proposed solution Add a `Cmd+Shift+V` / `Ctrl+Shift+V` keyboard shortcut that pastes clipboard content as plain text, stripping any HTML formatting. This would: - Read only the `text/plain` MIME type from the clipboard (ignoring `text/html`) - Create a text shape with unformatted content - Follow the same paste positioning logic as regular paste (respecting the paste-at-cursor preference) ### Notes - `Shift` is already used as a modifier during paste to toggle paste-at-cursor mode. A