diff --git a/src/edit_mode/keybindings.rs b/src/edit_mode/keybindings.rs index e2e5e17f..7822ce0f 100644 --- a/src/edit_mode/keybindings.rs +++ b/src/edit_mode/keybindings.rs @@ -232,6 +232,9 @@ pub fn add_common_edit_bindings(kb: &mut Keybindings) { KC::Char('v'), edit_bind(EC::PasteSystem), ); + kb.add_binding(KM::ALT, KC::Enter, edit_bind(EC::InsertNewline)); + kb.add_binding(KM::SHIFT, KC::Enter, edit_bind(EC::InsertNewline)); + kb.add_binding(KM::CONTROL, KC::Char('j'), edit_bind(EC::InsertNewline)); } pub fn add_common_selection_bindings(kb: &mut Keybindings) {