diff options
author | bobzel <zzzman@gmail.com> | 2022-05-31 13:03:19 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-05-31 13:03:19 -0400 |
commit | 53cae5e2ab9267295a824ff721c119ada5e5dc20 (patch) | |
tree | c262fd0f277bd5f3ce2f83f8ab35dce23299003e /src/client/views/nodes/formattedText/ProsemirrorExampleTransfer.ts | |
parent | ddd38f923180efd0dc4f53a1c3caad4a1f9ed26f (diff) |
added a pop up menu for viewing dashField view collection. added a menu button for turning off autoLinking to text selection. added ability to add button to top contextMenu buttons without blowing away db.
Diffstat (limited to 'src/client/views/nodes/formattedText/ProsemirrorExampleTransfer.ts')
-rw-r--r-- | src/client/views/nodes/formattedText/ProsemirrorExampleTransfer.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/nodes/formattedText/ProsemirrorExampleTransfer.ts b/src/client/views/nodes/formattedText/ProsemirrorExampleTransfer.ts index e979ae59e..fb49b0698 100644 --- a/src/client/views/nodes/formattedText/ProsemirrorExampleTransfer.ts +++ b/src/client/views/nodes/formattedText/ProsemirrorExampleTransfer.ts @@ -82,6 +82,8 @@ export function buildKeymap<S extends Schema<any>>(schema: S, props: any, mapKey bind("Ctrl-Tab", () => props.onKey?.(event, props) ? true : true); bind("Alt-Tab", () => props.onKey?.(event, props) ? true : true); + bind("Meta-Tab", () => props.onKey?.(event, props) ? true : true); + bind("Meta-Enter", () => props.onKey?.(event, props) ? true : true); bind("Tab", (state: EditorState<S>, dispatch: (tx: Transaction<S>) => void) => { if (props.onKey?.(event, props)) return true; if (!canEdit(state)) return true; |