Skip to content

Releases: chzyer/readline

add go mod

14 Apr 12:18
Compare
Choose a tag to compare
v1.5.0

add go.mod and remove unnecessary dep

v1.4

26 Jul 13:52
Compare
Choose a tag to compare
  • #60 Support dynamic autocompletion
  • Fix ANSI parser on Windows
  • Fix wrong column width in complete mode on Windows
  • Remove dependent package "golang.org/x/crypto/ssh/terminal"

v1.3

09 May 13:29
Compare
Choose a tag to compare
  • #38 add SetChildren for prefix completer interface
  • #42 improve multiple lines compatibility
  • #43 remove sub-package(runes) for gopkg compatiblity
  • #46 Auto complete with space prefixed line
  • #48 support suspend process (ctrl+Z)
  • #49 fix bug that check equals with previous command
  • #53 Fix bug which causes integer divide by zero panicking when input buffer is empty

v1.2

05 Mar 07:49
Compare
Choose a tag to compare
  • Add a demo for checking password strength example/readline-pass-strength, , written by @sahib
  • #23, support stdin remapping
  • #27, add a UniqueEditLine to Config, which will erase the editing line after user submited it, usually use in IM.
  • Add a demo for multiline example/readline-multiline which can submit one SQL by multiple lines.
  • Supports performs even stdin/stdout is not a tty.
  • Add a new simple apis for single instance, check by here. It need to save history manually if using this api.
  • #28, fixes the history is not working as expected.
  • #33, vim mode now support c, d, x (delete character), r (replace character)

v1.1

20 Nov 15:28
Compare
Choose a tag to compare
  • #12 Add support for key <Delete>/<Home>/<End>
  • Only enter raw mode as needed (calling Readline()), program will receive signal(e.g. Ctrl+C) if not interact with readline.
  • Bugs fixed for PrefixCompleter
  • Press Ctrl+D in empty line will cause io.EOF in error, Press Ctrl+C in anytime will cause ErrInterrupt instead of io.EOF, this will privodes a shell-like user experience.
  • Customable Interrupt/EOF prompt in Config
  • #17 Change atomic package to use 32bit function to let it runnable on arm 32bit devices
  • Provides a new password user experience(readline.ReadPasswordEx()).

first release

16 Oct 00:54
Compare
Choose a tag to compare

First release for gopkg.in/readline.v1