Skip to content
Snippets Groups Projects
Commit caa7642b authored by chris's avatar chris
Browse files

delete block and move cursor

parent fc63bd5f
No related branches found
No related tags found
1 merge request!21Track changes
......@@ -194,14 +194,12 @@ const trackedTransaction = (tr, state, editor) => {
if (
!tr.steps.length ||
(tr.meta &&
!Object.keys(tr.meta).every(
// Only replace TRs that have no metadata or only inputType metadata
metadata => ["inputType", "uiEvent", "paste"].includes(metadata)
!Object.keys(tr.meta).every(metadata =>
["inputType", "uiEvent", "paste"].includes(metadata)
)) ||
// don't replace history TRs
["historyUndo", "historyRedo"].includes(tr.getMeta("inputType"))
) {
// None of the transactions change the doc, or all are remote, come from footnotes, are footnote creations, history or fixing IDs. Give up.
return tr;
}
const user = "editor.user.id",
......@@ -466,7 +464,7 @@ const trackedTransaction = (tr, state, editor) => {
}
});
// We copy the input type meta data from the original transaction.
// copy the input type meta data from the original transaction.
if (tr.getMeta("inputType")) {
newTr.setMeta(tr.getMeta("inputType"));
}
......@@ -491,8 +489,9 @@ const trackedTransaction = (tr, state, editor) => {
}
if (tr.scrolledIntoView) {
newTr.scrollIntoView();
const caretPos = map.map(tr.selection.from, -1);
newTr.setSelection(new TextSelection(newTr.doc.resolve(caretPos)));
}
return newTr;
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment