Simon Boudrias

Results 429 comments of Simon Boudrias

@saurabhje that'd be great. Let me know if you get blocked somewhere.

We received a suggestion for a way to improve performance, it's merged and released. Would appreciate feedback form the folks here: does it fix/improve the situation for you?

Amazing that's great to hear! Thanks for following up 😁

A progress bar or flow control could be created, but that to me is a different package. I wouldn't mind integrating it under the `@inquirer/*` umbrella and officially supporting, but...

Hey @PaQ666, This isn't something I've tried making work. You could get some inspiration from the `BottomBar` module in this repository - but it's not working out of the box...

@adamreisnz it's not something I plan working on myself. I'm happy to help review the concept (before any PR) if someone wants to spend time working on such a feature.

Could you provide an example how an end-user would use `inquirer.log()`? I'm not sure I fully understand in which context this is necessary.

It would be possible with a custom prompt - but that's not a feature of the input prompt right now. Maybe a solution is to have an extra property, like...

Hum, I wonder if we could provide the caret in a way like this: ```js inquirer.prompt([{ name: 'suffix', type: 'input', message: 'suffix:', transformer: function (a, b) { return `${a}${inquirer.CARET}.mydomain.com` }...