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

If I have a history log that looks something like this: ``` install some-package install other-package remove some-package ``` If I type `install ` and press Up, it will suggest...

Hi @chzyer, when I use a unicode char such as '🐵 >' for the `Prompt`, the cursor moves back by a character (for each unicode character) every time I do...

build example in windows, run: fatal error: all goroutines are asleep - deadlock! OS: win7 64 Go: 1.5.2

bug

I get the same panic when trying to run. I have tried in go versions 1.7.4, 1.8.1, and 1.9.2 it seems to be an issue in the master branch. the...

Hi, I'm glad to see you active, please take a look on these bugfixes/improvements

Hello, I wrote a pretty simple Go script and tried to run it on different OS: ``` package main import ( "fmt" "github.com/chzyer/readline" ) func main() { rl, err :=...

Is it possible to do case-insensitive completion?

enhancement

When completing entries with a space, the entire string should be wrapped in quotes, or the space needs to be escaped by a backslash.

I'm trying to implement a fuzzy-search-based autocompleter and wrote the following: ```go package main import ( "github.com/chzyer/readline" "github.com/renstrom/fuzzysearch/fuzzy" ) func nodeAutocompleter(s *state) readline.AutoCompleter { haystack := make([]string, len(s.Nodes)) i :=...

It would be just like having an automatic TAB pressed at the beggining.