diff --git a/crates/nu-explore/src/pager/mod.rs b/crates/nu-explore/src/pager/mod.rs index 2d4da2e1a7..eb4ff5c443 100644 --- a/crates/nu-explore/src/pager/mod.rs +++ b/crates/nu-explore/src/pager/mod.rs @@ -435,7 +435,7 @@ fn run_command( let new_view = cmd.spawn(engine_state, stack, value, &view_cfg)?; if let Some(view) = view_stack.curr_view.take() { - if !view.stackable { + if view.stackable { view_stack.stack.push(view); } }