promptui icon indicating copy to clipboard operation
promptui copied to clipboard

Interactive prompt for command-line applications

Results 93 promptui issues
Sort by recently updated
recently updated
newest added

See the title. Simple [Select](https://github.com/manifoldco/promptui/blob/master/select.go#L81) has them and `SelectWithAdd` just misses them. Also, they should be wired into `Select` [being created](https://github.com/manifoldco/promptui/blob/master/select.go#L536) inside... Also [this line](https://github.com/manifoldco/promptui/blob/master/select.go#L558) should be changed.

This confuses our users because they want to see what question they were asked, along with their answers as the interview continues. Is there a way to get the Label...

The cursor and screen buffers used in prompt.go and select.go are concurrently accessed. This causes a data race. Lock protecting the accesses to the Cursor and the screenbuffer eliminates the...

before select is executed, if enter key is pressed this one will be captured as input for select misleading to undesired behavior. code to reproduce ```js package main import (...

Hi, I am using the latest version of promptui. I created a REPL and I am using promptui to grab the users input. However after every new input the **cursor...

Examples of helping people use cobra more intuitively ,resolve https://github.com/manifoldco/promptui/issues/56

Resolving numerous issues like: https://github.com/manifoldco/promptui/issues/81 Putting my code with low hopes of getting this merged, but if you find this useful +1 I can improve it/add to examples etc. It...

exmaple tpl: `{{if .Email}}Email is: {{.Email}}{{else}}Email is NOT set.{{end}}` this basically fails and shows some sort of default value instead of `else` section

I experience issues with prompt text being invisible on a black background as bolded text is black. I use zsh with the default theme and osx 11.1. I think I...

is it possible w/ promptui to implement a series of prompts (like pass an array of multiple "question" objects)