aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs9
1 files changed, 9 insertions, 0 deletions
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),
_ => (),
}