Simon Boudrias
Simon Boudrias
Nothing prevents you from using prior answers to decide what/how to handle the next prompts. You can use the `answers` passed to most callbacks, or you can just split your...
What do you mean by "split screen" mode? You mean the editor should display 2 input screens? I'm not sure this would be possible, it likely depends a lot of...
How about you do this processing before calling `inquirer.prompt()`?
Not sure when that was added, but a PR was merged with that feature. [See documentation](https://github.com/SBoudrias/Inquirer.js/tree/main/packages/inquirer#inquirerpromptquestions-answers---promise). (cleaning old issues)
I believe all prompts now expose this under `instruction`. Happy to review prompt by prompt issues if any remaining. Cheers!
Given it doesn't display color, I wonder if it supports ANSI code at all. If it doesn't, then I don't think it'd ever be possible for us to support this...
You can use the `when` function to `console.log()` warning on your own. Or you can just split your prompts in multiples functions that you chain: ```js prompt1() .then(prompt2) .then(prompt3) .then(onAnswer);...
[cleaning up old issues] Prompts taking a list of choices now exposes a `description` option. That description test appears when a choice is highlighted. And with `theme` the display can...
There's a few plugins for that: https://www.npmjs.com/package/inquirer-path https://www.npmjs.com/package/inquirer-directory
[cleaning up old issues] We have a demo available doing mostly this with the `search` prompt. [See here](https://github.com/SBoudrias/Inquirer.js/blob/main/packages/demo/demos/search.mjs#L48-L82)