Change behavior of Enter in tables, closes #6281

This commit is contained in:
Tom Moor
2024-04-21 20:13:48 -04:00
parent 3f7b377022
commit 0c997bfd8c

View File

@@ -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(),
};
}