Skip to content

Commit

Permalink
Replace DAP vars popup, instead of adding new (#7034)
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Walrus authored May 13, 2023
1 parent 06d7f5d commit d5fe08d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,13 @@ impl<'a> Context<'a> {
}));
}

/// Call `replace_or_push` on the Compositor
pub fn replace_or_push_layer<T: Component>(&mut self, id: &'static str, component: T) {
self.callback = Some(Box::new(move |compositor: &mut Compositor, _| {
compositor.replace_or_push(id, component);
}));
}

#[inline]
pub fn on_next_key(
&mut self,
Expand Down
2 changes: 1 addition & 1 deletion helix-term/src/commands/dap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ pub fn dap_variables(cx: &mut Context) {

let contents = Text::from(tui::text::Text::from(variables));
let popup = Popup::new("dap-variables", contents);
cx.push_layer(Box::new(popup));
cx.replace_or_push_layer("dap-variables", popup);
}

pub fn dap_terminate(cx: &mut Context) {
Expand Down

0 comments on commit d5fe08d

Please sign in to comment.