diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 0cbc3f9d..53ec2fbf 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1873,6 +1873,15 @@ pub fn space_mode(cx: &mut Context) { 'f' => file_picker(cx), 'b' => buffer_picker(cx), 'v' => vsplit(cx), + 'w' => { + // save current buffer + let doc = cx.doc(); + smol::block_on(doc.save()); + } + 'c' => { + // close current split + cx.editor.close(cx.view_id); + } // ' ' => toggle_alternate_buffer(cx), _ => (), }