Mislav Marohnić
Mislav Marohnić
Thanks for taking the time to chime in. What is the most conservative change that the maintainers of Cobra would be willing to accept in order to fix the main...
I also experience this and wanted to find ways to mitigate. This is the redrawing logic: https://github.com/AlecAivazis/survey/blob/e47352f914346a910cc7e1ca9f65a7ac0674449a/renderer.go#L135-L145 Perhaps there is a way to redraw the last N lines in a...
Thanks for proposing this! I'm wary of adding a new overly-specific configuration option. Generally, if there was a way to indicate more items below or after the "fold", I'd be...
Thank you for reporting! Agreed that this library should avoid dropping down to syscall and instead use more of the standard library to avoid cross-platform limitations. I've tried a migration...
Thanks for taking this on! Since this is a work in progress, would you mind marking the PR as draft until it's ready for review?
@SirRegion I meant, instead of changing the title of the PR to include the word "draft", actually making the PR as draft in GitHub web UI. I believe that the...
This is a great idea! > For Example: You want to test your newly written function `askRandomQuestion` asks the predefined question "Are you there?" and if the user responds with...
Agreed that the text could use an improvement, and thank you for proposing! What do you think about something like the following: > Press Enter twice to end input
@vlours Ctrl-C is implicitly always available to abort the program, including during any Survey prompt. I don't think we have to additionally point it out. However, Ctrl-D can be used...
Hi, I don't have experience with pexpect, but Survey interprets either `\n` or `\r` read from stdin (from the terminal, to be precise, because Survey only works when stdin is...