aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/compositor.rs
diff options
context:
space:
mode:
authorIvan Tham2021-07-18 04:24:07 +0000
committerBlaž Hrastnik2021-07-22 02:22:27 +0000
commiteba0bbda2ee10e9ba53f01f1d324d2c4c82229d2 (patch)
treed86b64715f3d948766d2226c27c58e54860ff2e5 /helix-term/src/compositor.rs
parentdf0ed80931c358262fd6858306e28806c0523068 (diff)
Resume last picker
Inspired by space ' in doom emacs.
Diffstat (limited to 'helix-term/src/compositor.rs')
-rw-r--r--helix-term/src/compositor.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/helix-term/src/compositor.rs b/helix-term/src/compositor.rs
index 5fcb552a..c2cfa3a7 100644
--- a/helix-term/src/compositor.rs
+++ b/helix-term/src/compositor.rs
@@ -74,6 +74,8 @@ type Terminal = tui::terminal::Terminal<CrosstermBackend<std::io::Stdout>>;
pub struct Compositor {
layers: Vec<Box<dyn Component>>,
terminal: Terminal,
+
+ pub(crate) last_picker: Option<Box<dyn Component>>,
}
impl Compositor {
@@ -83,6 +85,7 @@ impl Compositor {
Ok(Self {
layers: Vec::new(),
terminal,
+ last_picker: None,
})
}
@@ -103,8 +106,8 @@ impl Compositor {
self.layers.push(layer);
}
- pub fn pop(&mut self) {
- self.layers.pop();
+ pub fn pop(&mut self) -> Option<Box<dyn Component>> {
+ self.layers.pop()
}
pub fn handle_event(&mut self, event: Event, cx: &mut Context) -> bool {