Allow switching views back to scratch buffers.

imgbot
Blaž Hrastnik 3 years ago
parent 418ee17b86
commit f2c79e245b

@ -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));

@ -66,7 +66,7 @@ impl Editor {
}
}
fn _open(&mut self, id: DocumentId, action: Action) -> Result<DocumentId, Error> {
pub fn switch(&mut self, id: DocumentId, action: Action) -> Result<DocumentId, Error> {
use crate::tree::Layout;
use helix_core::Selection;
match action {
@ -115,7 +115,7 @@ impl Editor {
let doc = Document::new(Rope::from("\n"));
let id = self.documents.insert(doc);
self.documents[id].id = id;
self._open(id, action)
self.switch(id, action)
}
pub fn open(&mut self, path: PathBuf, action: Action) -> Result<DocumentId, Error> {
@ -159,7 +159,7 @@ impl Editor {
id
};
self._open(id, action)
self.switch(id, action)
}
pub fn close(&mut self, id: ViewId) {

Loading…
Cancel
Save