diff options
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/commands.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index addd7437..b7e853c4 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -856,7 +856,7 @@ pub fn command_mode(cx: &mut Context) { match *parts.as_slice() { ["q"] | ["quit"] => { - editor.close(editor.view().id); + editor.close(editor.view().id, /* close_buffer */ false); } ["o", path] | ["open", path] => { editor.open(path.into(), Action::Replace); @@ -2085,7 +2085,7 @@ pub fn space_mode(cx: &mut Context) { } 'c' => { // close current split - cx.editor.close(cx.view_id); + cx.editor.close(cx.view_id, /* close_buffer */ false); } // ' ' => toggle_alternate_buffer(cx), // TODO: temporary since space mode took it's old key |