aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/commands.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r--helix-term/src/commands.rs15
1 files changed, 6 insertions, 9 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index eab9397c..5c1021e1 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -930,17 +930,14 @@ pub fn buffer_picker(cx: &mut Context) {
path.into()
}
}
- None => "[NEW]".into(),
+ None => "[scratch buffer]".into(),
}
},
- |editor: &mut Editor, (_, path): &(DocumentId, Option<PathBuf>), _action| match path {
- Some(path) => {
- use helix_view::editor::Action;
- editor
- .open(path.into(), Action::Replace)
- .expect("editor.open failed");
- }
- None => (),
+ |editor: &mut Editor, (id, _path): &(DocumentId, Option<PathBuf>), _action| {
+ use helix_view::editor::Action;
+ editor
+ .switch(*id, Action::Replace)
+ .expect("editor.open failed");
},
);
cx.push_layer(Box::new(picker));