From 0c997bfd8ce14e4fe57256c92da98a534b69f84f Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sun, 21 Apr 2024 20:13:48 -0400 Subject: [PATCH] Change behavior of Enter in tables, closes #6281 --- shared/editor/nodes/Table.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/editor/nodes/Table.ts b/shared/editor/nodes/Table.ts index 07f840b79..ac7417386 100644 --- a/shared/editor/nodes/Table.ts +++ b/shared/editor/nodes/Table.ts @@ -75,7 +75,7 @@ export default class Table extends Node { return { Tab: chainCommands(goToNextCell(1), addRowAndMoveSelection()), "Shift-Tab": goToNextCell(-1), - Enter: addRowAndMoveSelection(), + "Mod-Enter": addRowAndMoveSelection(), }; }