Commit Graph

9 Commits

Author SHA1 Message Date
Hana Kim 58ec6f4d24 Fix suggested by go vet
Vet examines the source code and reports suspicious constructs including
non-standard signatures for widely-used names such as
WriteTo and ReadRune.

$ go vet github.com/chzyer/readline
remote.go:276: method WriteTo(w io.Writer) (int, error) should have signature WriteTo(io.Writer) (int64, error)
terminal.go:99: method ReadRune() rune should have signature ReadRune() (rune, int, error)

This commit introduces exported method changes.
2018-09-10 18:29:52 -04:00
soopsio f6d7a1f6fb Fix ioloop groutine leaks bug. (#136)
* Fix ioloop groutine leaks bug.

* fix func (o *Operation) ioloop()  L:125 hangs
2017-12-08 09:17:16 +08:00
chzyer d4c46a49e6 [remote] fix remote 2016-04-11 01:46:08 +08:00
chzyer a5bc4d464a [remote] add a onListen func 2016-03-31 14:20:14 +08:00
chzyer 30b462e50b Fix #39, remote can raise a EOF error now 2016-03-28 17:37:07 +08:00
chzyer 4e554e2dd0 fix remote 2016-03-23 17:07:53 +08:00
chzyer b57eccfd02 add remote mode 2016-03-13 18:32:48 +08:00
Cheney 1aa557f19e fix typo 2016-01-31 13:54:58 +08:00
Cheney 8853e17195 support dial to remote readline 2016-01-31 12:18:46 +08:00