From 9b50c35fe7a2ea4551cc0e08cf3e7b0e9bb1b067 Mon Sep 17 00:00:00 2001 From: Tw93 Date: Thu, 2 Oct 2025 19:23:40 +0800 Subject: [PATCH] feat(analyze): enable RIGHT as enter and LEFT as back in both volume and drill views --- bin/analyze.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/analyze.sh b/bin/analyze.sh index c9f57d0..1f04e41 100755 --- a/bin/analyze.sh +++ b/bin/analyze.sh @@ -1457,7 +1457,7 @@ show_volumes_overview() { "DOWN") ((cursor < total_items - 1)) && ((cursor++)) ;; - "ENTER") + "ENTER"|"RIGHT") # Get selected path local selected_path="" idx=0 @@ -1644,7 +1644,7 @@ interactive_drill_down() { local max_cursor=$(( total_items < max_show ? total_items - 1 : max_show - 1 )) ((cursor < max_cursor)) && ((cursor++)) ;; - "ENTER") + "ENTER"|"RIGHT") # Enter selected item (only if it's a directory) if [[ $cursor -lt ${#items[@]} ]]; then local selected="${items[$cursor]}"