diff --git a/src/KeyBindingsDefaults.ts b/src/KeyBindingsDefaults.ts index bcb280a6626..b6296e2dd43 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,