···198198199199### Selection
200200201201-`select`, `multiselect`, and `groupMultiselect` show persistent keyboard hint footers while active (v1.6.0), matching `autocomplete`. There is no option to disable them.
201201+`select`, `multiselect`, and `groupMultiselect` show persistent keyboard hint footers while active (v1.6.0), matching `autocomplete`. Pass `showInstructions: false` to hide them (v1.7.0). Default: `true`.
202202203203#### Simple value
204204···222222<font color="#06989A">│</font> ○ Astro (Content-focused)
223223<font color="#06989A">│</font> ○ SvelteKit (Compile-time framework)
224224<font color="#06989A">│</font> <font color="#AAAAAA">↑/↓ to navigate • Enter: confirm</font>
225225+<font color="#06989A">└</font></pre>
226226+227227+#### Hide instructions
228228+229229+```ts twoslash
230230+import { select } from '@clack/prompts';
231231+232232+const framework = await select({
233233+ message: 'Pick a framework',
234234+ options: [
235235+ { value: 'next', label: 'Next.js', hint: 'React framework' },
236236+ { value: 'astro', label: 'Astro', hint: 'Content-focused' },
237237+ { value: 'svelte', label: 'SvelteKit', hint: 'Compile-time framework' },
238238+ ],
239239+ showInstructions: false,
240240+});
241241+```
242242+243243+<pre class="cli-preview"><font color="#555753">│</font>
244244+<font color="#06989A">◆</font> Pick a framework
245245+<font color="#06989A">│</font> <font color="#4E9A06">●</font> Next.js (React framework)
246246+<font color="#06989A">│</font> ○ Astro (Content-focused)
247247+<font color="#06989A">│</font> ○ SvelteKit (Compile-time framework)
225248<font color="#06989A">└</font></pre>
226249227250#### Complex value
···607630- `cursorAt`: The value the cursor should be positioned at initially.
608631- `selectableGroups`: Whether entire groups can be selected at once (default: `true`).
609632- `groupSpacing`: Number of blank lines between groups (default: `0`).
633633+- `showInstructions`: Whether to show keyboard instructions below the option list (default: `true`) (v1.7.0).
610634- All [Common Options](#common-options)
611635612636### Group