diff --git a/tldraw/packages/core/src/lib/TLApp/TLApp.ts b/tldraw/packages/core/src/lib/TLApp/TLApp.ts index 13056cf5c8..b5e3a73007 100644 --- a/tldraw/packages/core/src/lib/TLApp/TLApp.ts +++ b/tldraw/packages/core/src/lib/TLApp/TLApp.ts @@ -163,6 +163,15 @@ export class TLApp< this.notify('saveAs', null) }, }, + { + keys: 'mod+shift+v', + fn: (_, __, e) => { + if (!this.editingShape) { + e.preventDefault() + this.paste(undefined, true) + } + }, + }, { keys: ['delete', 'backspace'], fn: () => {