diff --git a/src/KeyBindingsDefaults.ts b/src/KeyBindingsDefaults.ts index bcb280a662..b6296e2dd4 100644 --- a/src/KeyBindingsDefaults.ts +++ b/src/KeyBindingsDefaults.ts @@ -140,6 +140,13 @@ const messageComposerBindings = (): KeyBinding[] => { key: Key.ENTER, }, }); + bindings.push({ + action: MessageComposerAction.NewLine, + keyCombo: { + key: Key.ENTER, + shiftKey: true, + }, + }); } else { bindings.push({ action: MessageComposerAction.Send,