From 9419c4287969f35bdc5b07af8e7590547f13197d Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 11 Mar 2026 13:46:20 +0000 Subject: [PATCH 1/2] Replace "Esc to clear" with "Type to search" in task selector https://claude.ai/code/session_01FbckcRhug9ZfpUREosapX4 --- crates/vite_select/src/interactive.rs | 6 +++--- .../fixtures/task-list/snapshots/vp run in script.snap | 2 +- .../snapshots/interactive long command truncated.snap | 10 +++++----- ...interactive enter with no results does nothing.snap | 6 +++--- .../snapshots/interactive escape clears query.snap | 6 +++--- .../snapshots/interactive scroll long list.snap | 6 +++--- .../interactive search other package task.snap | 4 ++-- ...ractive search preserves rating within package.snap | 4 ++-- .../snapshots/interactive search then select.snap | 4 ++-- .../interactive search with hash skips reorder.snap | 4 ++-- .../interactive select from other package.snap | 4 ++-- .../snapshots/interactive select task from lib.snap | 2 +- .../task-select/snapshots/interactive select task.snap | 4 ++-- .../snapshots/interactive select with typo.snap | 2 +- .../snapshots/verbose with typo enters selector.snap | 2 +- 15 files changed, 33 insertions(+), 33 deletions(-) diff --git a/crates/vite_select/src/interactive.rs b/crates/vite_select/src/interactive.rs index b8015996..ba03350e 100644 --- a/crates/vite_select/src/interactive.rs +++ b/crates/vite_select/src/interactive.rs @@ -288,12 +288,12 @@ pub fn render_items(writer: &mut impl Write, params: &RenderParams<'_>) -> anyho if q.is_empty() { write!( writer, - "Select a task (\u{2191}/\u{2193}, Enter to run, Esc to clear):{line_ending}", + "Select a task (\u{2191}/\u{2193}, Enter to run, Type to search):{line_ending}", )?; } else { write!( writer, - "Select a task (\u{2191}/\u{2193}, Enter to run, Esc to clear): {q}{line_ending}", + "Select a task (\u{2191}/\u{2193}, Enter to run, Type to search): {q}{line_ending}", )?; } write!(writer, "{line_ending}")?; @@ -740,7 +740,7 @@ mod tests { let spacer = lines.next().unwrap(); let selected = lines.next().unwrap(); let unselected = lines.next().unwrap(); - assert_eq!(prompt, "Select a task (\u{2191}/\u{2193}, Enter to run, Esc to clear):"); + assert_eq!(prompt, "Select a task (\u{2191}/\u{2193}, Enter to run, Type to search):"); assert!(spacer.is_empty()); assert_eq!(selected, " \u{203a} build: echo build"); assert_eq!(unselected, " lint: echo lint"); diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-list/snapshots/vp run in script.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-list/snapshots/vp run in script.snap index 20a838af..32beaccc 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-list/snapshots/vp run in script.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-list/snapshots/vp run in script.snap @@ -5,7 +5,7 @@ expression: e2e_outputs > vp run list-tasks @ expect-milestone: task-select::0 $ vp run ⊘ cache disabled -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › hello: echo hello from root list-tasks: vp run diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select-truncate/snapshots/interactive long command truncated.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select-truncate/snapshots/interactive long command truncated.snap index 18b8e18c..db212f19 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select-truncate/snapshots/interactive long command truncated.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select-truncate/snapshots/interactive long command truncated.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app @@ -14,7 +14,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): test: echo test app @ write-key: down @ expect-milestone: task-select::1 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): build: echo build app › lint: echo lint app @@ -22,7 +22,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): test: echo test app @ write-key: down @ expect-milestone: task-select::2 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): build: echo build app lint: echo lint app @@ -30,7 +30,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): test: echo test app @ write-key: down @ expect-milestone: task-select::3 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): build: echo build app lint: echo lint app @@ -38,7 +38,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): › test: echo test app @ write-key: up @ expect-milestone: task-select::2 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): build: echo build app lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive enter with no results does nothing.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive enter with no results does nothing.snap index 3675dcad..d270c64f 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive enter with no results does nothing.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive enter with no results does nothing.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app @@ -23,13 +23,13 @@ Select a task (↑/↓, Enter to run, Esc to clear): (…5 more) @ write: zzzzz @ expect-milestone: task-select:zzzzz:0 -Select a task (↑/↓, Enter to run, Esc to clear): zzzzz +Select a task (↑/↓, Enter to run, Type to search): zzzzz No matching tasks. @ write-key: enter @ write-key: escape @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive escape clears query.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive escape clears query.snap index 5e97210c..bf9d51cd 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive escape clears query.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive escape clears query.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app @@ -23,14 +23,14 @@ Select a task (↑/↓, Enter to run, Esc to clear): (…5 more) @ write: lin @ expect-milestone: task-select:lin:0 -Select a task (↑/↓, Enter to run, Esc to clear): lin +Select a task (↑/↓, Enter to run, Type to search): lin › lint: echo lint app lib (packages/lib) lint: echo lint lib @ write-key: escape @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive scroll long list.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive scroll long list.snap index db1f2dc5..36a19ab5 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive scroll long list.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive scroll long list.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app @@ -30,7 +30,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): @ write-key: down @ write-key: down @ expect-milestone: task-select::8 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): build: echo build app lint: echo lint app @@ -54,7 +54,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): @ write-key: up @ write-key: up @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search other package task.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search other package task.snap index 8a66a346..d7003d62 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search other package task.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search other package task.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app @@ -23,7 +23,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): (…5 more) @ write: typec @ expect-milestone: task-select:typec:0 -Select a task (↑/↓, Enter to run, Esc to clear): typec +Select a task (↑/↓, Enter to run, Type to search): typec lib (packages/lib) › typecheck: echo typecheck lib diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search preserves rating within package.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search preserves rating within package.snap index 44574981..cd6e71c5 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search preserves rating within package.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search preserves rating within package.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build lib lint: echo lint lib @@ -23,7 +23,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): (…5 more) @ write: t @ expect-milestone: task-select:t:0 -Select a task (↑/↓, Enter to run, Esc to clear): t +Select a task (↑/↓, Enter to run, Type to search): t › test: echo test lib typecheck: echo typecheck lib diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search then select.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search then select.snap index 4d27c2d2..3dd8ca8f 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search then select.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search then select.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app @@ -23,7 +23,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): (…5 more) @ write: lin @ expect-milestone: task-select:lin:0 -Select a task (↑/↓, Enter to run, Esc to clear): lin +Select a task (↑/↓, Enter to run, Type to search): lin › lint: echo lint app lib (packages/lib) diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search with hash skips reorder.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search with hash skips reorder.snap index 4b63a2b4..94e3c64c 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search with hash skips reorder.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search with hash skips reorder.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app @@ -23,7 +23,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): (…5 more) @ write: lib# @ expect-milestone: task-select:lib#:0 -Select a task (↑/↓, Enter to run, Esc to clear): lib# +Select a task (↑/↓, Enter to run, Type to search): lib# lib (packages/lib) › build: echo build lib diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select from other package.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select from other package.snap index b206d864..24cee271 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select from other package.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select from other package.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app @@ -25,7 +25,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): @ write-key: down @ write-key: down @ expect-milestone: task-select::3 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): build: echo build app lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task from lib.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task from lib.snap index 1e397f78..386c225b 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task from lib.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task from lib.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build lib lint: echo lint lib diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task.snap index 67432a4d..3155cd94 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): › build: echo build app lint: echo lint app @@ -23,7 +23,7 @@ Select a task (↑/↓, Enter to run, Esc to clear): (…5 more) @ write-key: down @ expect-milestone: task-select::1 -Select a task (↑/↓, Enter to run, Esc to clear): +Select a task (↑/↓, Enter to run, Type to search): build: echo build app › lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select with typo.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select with typo.snap index 72034eb7..ba158458 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select with typo.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select with typo.snap @@ -7,7 +7,7 @@ info: > vp run buid @ expect-milestone: task-select:buid:0 Task "buid" not found. -Select a task (↑/↓, Enter to run, Esc to clear): buid +Select a task (↑/↓, Enter to run, Type to search): buid › build: echo build app lib (packages/lib) diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/verbose with typo enters selector.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/verbose with typo enters selector.snap index 74324926..d37837e0 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/verbose with typo enters selector.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/verbose with typo enters selector.snap @@ -7,7 +7,7 @@ info: > vp run buid --verbose @ expect-milestone: task-select:buid:0 Task "buid" not found. -Select a task (↑/↓, Enter to run, Esc to clear): buid +Select a task (↑/↓, Enter to run, Type to search): buid › build: echo build app lib (packages/lib) From 0c59b0b737f7ceaeb4349735fc34825fd886052b Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 11 Mar 2026 13:58:52 +0000 Subject: [PATCH 2/2] Lowercase "type to search" in task selector prompt https://claude.ai/code/session_01FbckcRhug9ZfpUREosapX4 --- crates/vite_select/src/interactive.rs | 6 +++--- .../fixtures/task-list/snapshots/vp run in script.snap | 2 +- .../snapshots/interactive long command truncated.snap | 10 +++++----- ...interactive enter with no results does nothing.snap | 6 +++--- .../snapshots/interactive escape clears query.snap | 6 +++--- .../snapshots/interactive scroll long list.snap | 6 +++--- .../interactive search other package task.snap | 4 ++-- ...ractive search preserves rating within package.snap | 4 ++-- .../snapshots/interactive search then select.snap | 4 ++-- .../interactive search with hash skips reorder.snap | 4 ++-- .../interactive select from other package.snap | 4 ++-- .../snapshots/interactive select task from lib.snap | 2 +- .../task-select/snapshots/interactive select task.snap | 4 ++-- .../snapshots/interactive select with typo.snap | 2 +- .../snapshots/verbose with typo enters selector.snap | 2 +- 15 files changed, 33 insertions(+), 33 deletions(-) diff --git a/crates/vite_select/src/interactive.rs b/crates/vite_select/src/interactive.rs index ba03350e..bb4be0bd 100644 --- a/crates/vite_select/src/interactive.rs +++ b/crates/vite_select/src/interactive.rs @@ -288,12 +288,12 @@ pub fn render_items(writer: &mut impl Write, params: &RenderParams<'_>) -> anyho if q.is_empty() { write!( writer, - "Select a task (\u{2191}/\u{2193}, Enter to run, Type to search):{line_ending}", + "Select a task (\u{2191}/\u{2193}, Enter to run, type to search):{line_ending}", )?; } else { write!( writer, - "Select a task (\u{2191}/\u{2193}, Enter to run, Type to search): {q}{line_ending}", + "Select a task (\u{2191}/\u{2193}, Enter to run, type to search): {q}{line_ending}", )?; } write!(writer, "{line_ending}")?; @@ -740,7 +740,7 @@ mod tests { let spacer = lines.next().unwrap(); let selected = lines.next().unwrap(); let unselected = lines.next().unwrap(); - assert_eq!(prompt, "Select a task (\u{2191}/\u{2193}, Enter to run, Type to search):"); + assert_eq!(prompt, "Select a task (\u{2191}/\u{2193}, Enter to run, type to search):"); assert!(spacer.is_empty()); assert_eq!(selected, " \u{203a} build: echo build"); assert_eq!(unselected, " lint: echo lint"); diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-list/snapshots/vp run in script.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-list/snapshots/vp run in script.snap index 32beaccc..f5c65363 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-list/snapshots/vp run in script.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-list/snapshots/vp run in script.snap @@ -5,7 +5,7 @@ expression: e2e_outputs > vp run list-tasks @ expect-milestone: task-select::0 $ vp run ⊘ cache disabled -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › hello: echo hello from root list-tasks: vp run diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select-truncate/snapshots/interactive long command truncated.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select-truncate/snapshots/interactive long command truncated.snap index db212f19..c1a71a70 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select-truncate/snapshots/interactive long command truncated.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select-truncate/snapshots/interactive long command truncated.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app @@ -14,7 +14,7 @@ Select a task (↑/↓, Enter to run, Type to search): test: echo test app @ write-key: down @ expect-milestone: task-select::1 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): build: echo build app › lint: echo lint app @@ -22,7 +22,7 @@ Select a task (↑/↓, Enter to run, Type to search): test: echo test app @ write-key: down @ expect-milestone: task-select::2 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): build: echo build app lint: echo lint app @@ -30,7 +30,7 @@ Select a task (↑/↓, Enter to run, Type to search): test: echo test app @ write-key: down @ expect-milestone: task-select::3 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): build: echo build app lint: echo lint app @@ -38,7 +38,7 @@ Select a task (↑/↓, Enter to run, Type to search): › test: echo test app @ write-key: up @ expect-milestone: task-select::2 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): build: echo build app lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive enter with no results does nothing.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive enter with no results does nothing.snap index d270c64f..5b2dabde 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive enter with no results does nothing.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive enter with no results does nothing.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app @@ -23,13 +23,13 @@ Select a task (↑/↓, Enter to run, Type to search): (…5 more) @ write: zzzzz @ expect-milestone: task-select:zzzzz:0 -Select a task (↑/↓, Enter to run, Type to search): zzzzz +Select a task (↑/↓, Enter to run, type to search): zzzzz No matching tasks. @ write-key: enter @ write-key: escape @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive escape clears query.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive escape clears query.snap index bf9d51cd..c5a0cb19 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive escape clears query.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive escape clears query.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app @@ -23,14 +23,14 @@ Select a task (↑/↓, Enter to run, Type to search): (…5 more) @ write: lin @ expect-milestone: task-select:lin:0 -Select a task (↑/↓, Enter to run, Type to search): lin +Select a task (↑/↓, Enter to run, type to search): lin › lint: echo lint app lib (packages/lib) lint: echo lint lib @ write-key: escape @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive scroll long list.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive scroll long list.snap index 36a19ab5..8fb604fa 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive scroll long list.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive scroll long list.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app @@ -30,7 +30,7 @@ Select a task (↑/↓, Enter to run, Type to search): @ write-key: down @ write-key: down @ expect-milestone: task-select::8 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): build: echo build app lint: echo lint app @@ -54,7 +54,7 @@ Select a task (↑/↓, Enter to run, Type to search): @ write-key: up @ write-key: up @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search other package task.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search other package task.snap index d7003d62..83832dd9 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search other package task.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search other package task.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app @@ -23,7 +23,7 @@ Select a task (↑/↓, Enter to run, Type to search): (…5 more) @ write: typec @ expect-milestone: task-select:typec:0 -Select a task (↑/↓, Enter to run, Type to search): typec +Select a task (↑/↓, Enter to run, type to search): typec lib (packages/lib) › typecheck: echo typecheck lib diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search preserves rating within package.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search preserves rating within package.snap index cd6e71c5..fbd8f4bd 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search preserves rating within package.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search preserves rating within package.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build lib lint: echo lint lib @@ -23,7 +23,7 @@ Select a task (↑/↓, Enter to run, Type to search): (…5 more) @ write: t @ expect-milestone: task-select:t:0 -Select a task (↑/↓, Enter to run, Type to search): t +Select a task (↑/↓, Enter to run, type to search): t › test: echo test lib typecheck: echo typecheck lib diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search then select.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search then select.snap index 3dd8ca8f..d7cc4342 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search then select.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search then select.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app @@ -23,7 +23,7 @@ Select a task (↑/↓, Enter to run, Type to search): (…5 more) @ write: lin @ expect-milestone: task-select:lin:0 -Select a task (↑/↓, Enter to run, Type to search): lin +Select a task (↑/↓, Enter to run, type to search): lin › lint: echo lint app lib (packages/lib) diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search with hash skips reorder.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search with hash skips reorder.snap index 94e3c64c..7c0cc720 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search with hash skips reorder.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive search with hash skips reorder.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app @@ -23,7 +23,7 @@ Select a task (↑/↓, Enter to run, Type to search): (…5 more) @ write: lib# @ expect-milestone: task-select:lib#:0 -Select a task (↑/↓, Enter to run, Type to search): lib# +Select a task (↑/↓, Enter to run, type to search): lib# lib (packages/lib) › build: echo build lib diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select from other package.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select from other package.snap index 24cee271..a9dba68b 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select from other package.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select from other package.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app @@ -25,7 +25,7 @@ Select a task (↑/↓, Enter to run, Type to search): @ write-key: down @ write-key: down @ expect-milestone: task-select::3 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): build: echo build app lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task from lib.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task from lib.snap index 386c225b..618c8165 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task from lib.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task from lib.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build lib lint: echo lint lib diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task.snap index 3155cd94..41546b26 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select task.snap @@ -6,7 +6,7 @@ info: --- > vp run @ expect-milestone: task-select::0 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): › build: echo build app lint: echo lint app @@ -23,7 +23,7 @@ Select a task (↑/↓, Enter to run, Type to search): (…5 more) @ write-key: down @ expect-milestone: task-select::1 -Select a task (↑/↓, Enter to run, Type to search): +Select a task (↑/↓, Enter to run, type to search): build: echo build app › lint: echo lint app diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select with typo.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select with typo.snap index ba158458..1ab302ad 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select with typo.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/interactive select with typo.snap @@ -7,7 +7,7 @@ info: > vp run buid @ expect-milestone: task-select:buid:0 Task "buid" not found. -Select a task (↑/↓, Enter to run, Type to search): buid +Select a task (↑/↓, Enter to run, type to search): buid › build: echo build app lib (packages/lib) diff --git a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/verbose with typo enters selector.snap b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/verbose with typo enters selector.snap index d37837e0..4047ce2f 100644 --- a/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/verbose with typo enters selector.snap +++ b/crates/vite_task_bin/tests/e2e_snapshots/fixtures/task-select/snapshots/verbose with typo enters selector.snap @@ -7,7 +7,7 @@ info: > vp run buid --verbose @ expect-milestone: task-select:buid:0 Task "buid" not found. -Select a task (↑/↓, Enter to run, Type to search): buid +Select a task (↑/↓, Enter to run, type to search): buid › build: echo build app lib (packages/lib)