go-prompt v0.2.3 Release Notes
Release Date: 2018-10-25 // over 4 years ago-
What's new?
- โ Add
prompt.FuzzyFilter
for fuzzy matching at #92. - โ Add
OptionShowCompletionAtStart
to show completion at start at #100. - โ Add
prompt.NewStderrWriter
at #102.
๐ Fixed
- ๐ Fix resetting display attributes (please see pull #104 for more details).
- ๐ Fix error handling of Flush function in ConsoleWriter (please see pull #97 for more details).
- ๐ Fix panic problem when reading from stdin before starting the prompt (please see issue #88 for more details).
โ Removed or Deprecated
- ๐
prompt.NewStandardOutputWriter
is deprecated. Please useprompt.NewStdoutWriter
.
- โ Add
Previous changes from v0.2.2
-
What's new?
- ๐ Support CJK(Chinese, Japanese and Korean) and Cyrillic characters.
- โ Add OptionCompletionWordSeparator(x string) to customize insertion points for completions.
- To support this, text query functions by arbitrary word separator are added in Document (please see here for more details).
- โ Add FilePathCompleter to complete file path on your system.
- โ Add option to customize ascii code key bindings.
- โ Add GetWordAfterCursor method in Document.
โ Removed or Deprecated
- ๐ prompt.Choose shortcut function is deprecated.