readline icon indicating copy to clipboard operation
readline copied to clipboard

Readline is a pure go(golang) implementation for GNU-Readline kind library

Results 129 readline issues
Sort by recently updated
recently updated
newest added

I'm trying to run an application using readline that talks to a hardware serial console (a venerable Minitel 1B), which appears as `/dev/ttyUSB0`. Here is a program that partially works....

Is it possible to apply readline to [tview](https://github.com/rivo/tview) or [tcell](https://github.com/gdamore/tcell)? For example, abstracting Terminal into an interface instead of relying on real Terminal device. I wrote a tview application and...

when input contains character where width > 1, such like chinese, cursor will in a wrong place, and never can back to the sentence`s head

Hello, is there an option to make auto completion case-insensitive? Like `he` -> `Help` If not, can I implement it without copy-pasting the whole completer (just to change `HasPrefix(...)` to...

* Add Algernon (1.4k stars) to the list of repos using readline

Hi, Thanks for creating this package! I'm using it in [Algernon](https://github.com/xyproto/algernon) and it works wonderfully. There is tab completion and history, and it's really smooth and pleasant to work with....

Is it possible to create a linebreak in the complete options? With such an option, it would be possible to create some kind of a structure in the auto-completion. Example:...

Lines 489-491 in runebuf.go are repeated in lines 506-508. This typo led to working cursor through prompt text. Deleting repeated lines fix that issue. Applied go fmt to runebuf.go *...

Hi, when I implement the FuncFilterInputRune like below, it fails to filtering it. It places `a` rune, but blocks all input after. ```golang func filterInput(r rune) (rune, bool) { switch...