From f2c79e245bdcc70be3c51fdca35917a929615152 Mon Sep 17 00:00:00 2001 From: Blaž Hrastnik Date: Fri, 7 May 2021 14:36:06 +0900 Subject: Allow switching views back to scratch buffers. --- helix-view/src/editor.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'helix-view/src/editor.rs') diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 84d499e3..256e0e83 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -66,7 +66,7 @@ impl Editor { } } - fn _open(&mut self, id: DocumentId, action: Action) -> Result { + pub fn switch(&mut self, id: DocumentId, action: Action) -> Result { 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 { @@ -159,7 +159,7 @@ impl Editor { id }; - self._open(id, action) + self.switch(id, action) } pub fn close(&mut self, id: ViewId) { -- cgit v1.2.3-70-g09d2