tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
28
pulls
pipelines
prevent cut on multi-block strikethrough
awarm.space
5 months ago
10cc39c0
f54569c9
+1
-1
1 changed file
expand all
collapse all
unified
split
components
SelectionManager.tsx
+1
-1
components/SelectionManager.tsx
···
511
}
512
if ((e.key === "c" || e.key === "x") && (e.metaKey || e.ctrlKey)) {
513
if (!rep) return;
514
-
if (e.shiftKey) return;
515
let [, , selectionWithFoldedChildren] =
516
await getSortedSelectionBound();
517
if (!selectionWithFoldedChildren) return;
···
511
}
512
if ((e.key === "c" || e.key === "x") && (e.metaKey || e.ctrlKey)) {
513
if (!rep) return;
514
+
if (e.shiftKey || (e.metaKey && e.ctrlKey)) return;
515
let [, , selectionWithFoldedChildren] =
516
await getSortedSelectionBound();
517
if (!selectionWithFoldedChildren) return;