Skip to content

Commit aaad5ae

Browse files
feat: clarify option selection mechanism (#1122)
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖. Please fill out all fields below and make sure each item is true and [x] checked. Otherwise we may not be able to review your PR. --> ## PR Checklist - [x] Addresses an existing open issue: fixes #1121 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview <!-- Description of what is changed and how the code change does that. --> This PR adds the text `You can press ↑ and ↓ on the keyboard to change the selected item, then space to select.` to the creation mechanism. :sunflower: --------- Co-authored-by: Josh Goldberg ✨ <[email protected]>
1 parent dadeed5 commit aaad5ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/options/augmentOptionsWithExcludes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export async function augmentOptionsWithExcludes(
213213
await prompts.multiselect({
214214
initialValues: exclusionKeys,
215215
message:
216-
"Select the tooling portions you'd like to remove. All are enabled by default.",
216+
"Select the tooling portions you'd like to remove. All are enabled by default. Press ↑ or ↓ to change the selected item, then space to select.",
217217
options: Object.entries(exclusionDescriptions).map(
218218
([value, { hint, label }]) => ({
219219
hint,

0 commit comments

Comments
 (0)