@seafile/seafile-editor 0.3.87 → 0.3.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -403,6 +403,13 @@ var withMarkdownShortcut = function withMarkdownShortcut(editor) {
|
|
|
403
403
|
exec(command);
|
|
404
404
|
break;
|
|
405
405
|
|
|
406
|
+
case 'delete_fragment':
|
|
407
|
+
// do not unhange selection when delete fragment
|
|
408
|
+
Editor.delete(editor, {
|
|
409
|
+
hanging: true
|
|
410
|
+
});
|
|
411
|
+
return;
|
|
412
|
+
|
|
406
413
|
default:
|
|
407
414
|
exec(command);
|
|
408
415
|
}
|