From 1a1a9608360a93da254a9995f1758ec56d08d5e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Kalm=C3=A1r?= Date: Thu, 6 Feb 2025 13:56:53 +0100 Subject: [PATCH] feat(explore): Allow expanding selected cell with 'e' (#15000) Closes #14993 # Description # User-Facing Changes New keybinding has been added to `explore` # Tests + Formatting # After Submitting --- crates/nu-explore/src/views/record/mod.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crates/nu-explore/src/views/record/mod.rs b/crates/nu-explore/src/views/record/mod.rs index e003348258..3e7d00615d 100644 --- a/crates/nu-explore/src/views/record/mod.rs +++ b/crates/nu-explore/src/views/record/mod.rs @@ -414,10 +414,7 @@ impl CursorMoveHandler for RecordView { Transition::Ok } fn handle_expand(&mut self) -> Transition { - match self.mode { - UIMode::View => Transition::Cmd(String::from("expand")), - _ => Transition::None, - } + Transition::Cmd(String::from("expand")) } fn handle_transpose(&mut self) -> Transition { match self.mode {