1
0
mirror of https://github.com/helix-editor/helix synced 2024-09-21 00:34:57 +02:00

Allow switching views back to scratch buffers.

This commit is contained in:
Blaž Hrastnik 2021-05-07 14:36:06 +09:00
parent 418ee17b86
commit f2c79e245b
2 changed files with 9 additions and 12 deletions

View File

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

View File

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