console
console copied to clipboard
Closed-loop application library for Cobra commands (powerful, ready-to-run and easy to use)
First off, thanks for a great library 🎉 I'm currently working on integrating this into my project [dottie](https://github.com/jippi/dottie) and this is the accumulated fixes / improvements i've made along the...
The [documentation](https://pkg.go.dev/github.com/reeflective/console#Menu.AddInterrupt) mentions a `console.ErrCtrlC` for checking interrupts. However I noticed that said Err does not exist in console package. This PR adds it in. Alternatively, could consider modifying the...
### SUMMARY Currently this library might suffer from sometimes slightly inconsistent behaviors between the buffer being executed and the one being completed. These inconsistencies are almost invariably due to **backslash...
I found that in the [readline](https://github.com/reeflective/readline) , it's possible to execute system commands using `!` .  For example: ! whoami Is it possible to implement similar functionality in the...
Hello, I'm trying to use term.ReadPassword for entering a password from the cli. I have a problem with the ctrl+c hotkey. If the user presses ctrl+c, the terminal freezes I...