diff --git a/tldraw/apps/tldraw-logseq/src/components/ContextMenu/ContextMenu.tsx b/tldraw/apps/tldraw-logseq/src/components/ContextMenu/ContextMenu.tsx
index f8e2a29c84..3e3bab90ba 100644
--- a/tldraw/apps/tldraw-logseq/src/components/ContextMenu/ContextMenu.tsx
+++ b/tldraw/apps/tldraw-logseq/src/components/ContextMenu/ContextMenu.tsx
@@ -38,6 +38,17 @@ export const ContextMenu = observer(function ContextMenu({
{app.selectedShapes?.size > 0 && (
<>
+
runAndTransition(app.cut)}
+ >
+ Cut
+
+
+ {MOD_KEY} X
+
+
+
runAndTransition(app.copy)}
diff --git a/tldraw/apps/tldraw-logseq/src/components/ZoomMenu/ZoomMenu.tsx b/tldraw/apps/tldraw-logseq/src/components/ZoomMenu/ZoomMenu.tsx
index 611cdae025..3889b2acf0 100644
--- a/tldraw/apps/tldraw-logseq/src/components/ZoomMenu/ZoomMenu.tsx
+++ b/tldraw/apps/tldraw-logseq/src/components/ZoomMenu/ZoomMenu.tsx
@@ -25,7 +25,11 @@ export const ZoomMenu = observer(function ZoomMenu(): JSX.Element {
onClick={app.api.zoomToFit}
>
Zoom to fit
-
+
+
+ 1
+
+
- {MOD_KEY} -
+ ⇧ 1
diff --git a/tldraw/packages/core/src/lib/TLApp/TLApp.ts b/tldraw/packages/core/src/lib/TLApp/TLApp.ts
index 063518f135..992f9cb140 100644
--- a/tldraw/packages/core/src/lib/TLApp/TLApp.ts
+++ b/tldraw/packages/core/src/lib/TLApp/TLApp.ts
@@ -96,7 +96,11 @@ export class TLApp<
fn: () => this.api.resetZoom(),
},
{
- keys: 'mod+-',
+ keys: '1',
+ fn: () => this.api.zoomToFit(),
+ },
+ {
+ keys: 'shift+1',
fn: () => this.api.zoomToSelection(),
},
{
@@ -111,6 +115,10 @@ export class TLApp<
keys: 'mod+z',
fn: () => this.undo(),
},
+ {
+ keys: 'mod+x',
+ fn: () => this.cut(),
+ },
{
keys: 'mod+shift+z',
fn: () => this.redo(),
@@ -437,6 +445,11 @@ export class TLApp<
}
}
+ cut = () => {
+ this.copy()
+ this.api.deleteShapes()
+ }
+
dropFiles = (files: FileList, point?: number[]) => {
this.notify('drop-files', {
files: Array.from(files),