If I want to have a prompt on the terminal with a default value already typed in, what library should I use?
Ruby's standard Readline.readline() lets me set the history but not fill in a default value (as far as I can tell, at least)
Something like:
code:
input = Readline.readline_with_default('>', 'default_text')
console:
> default_text|