readline icon indicating copy to clipboard operation
readline copied to clipboard

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

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

In my terminal with zsh, arrow keys didn't work without this PR. I think this PR fix #40 as well.

There is a race condition in terminal.go relating to wait groups. The wg.Add method should be called by the parent goroutine, not the child. https://golang.org/pkg/sync/#WaitGroup This was caught by gotsan....

The list of available keybindings in utils.go is very short. How would I bind to an arbitrary Ctrl-[key] command, or to PageUp/PageDown or Home/End? It's not clear to me where...

Given this program: ``` package main import ( "fmt" "log" "github.com/chzyer/readline" ) func main() { log.SetFlags(log.LstdFlags | log.Lshortfile) rl, err := readline.New("> ") if err != nil { log.Fatal(err) }...

Is it possible to paginate a long list of args that can be cycled/returned when pressing tabs/arrow keys? /cc @chzyer

Thanks for awesome library. I use `readline-demo` on Windows PowerShell. ![readline](https://cloud.githubusercontent.com/assets/2253692/24079768/6c40797a-0cd3-11e7-8e15-e66b9616f972.gif) How can I keep the background color?

This PR fixes the issue https://github.com/chzyer/readline/issues/117 with Ctrl-W-removing the first word in the buffer if there's more than one.

Hey, Thanks for your amazing work. Is there an ETA when you will craft a new release/tag so that we can use this repo with dep or other tools dependend...

My cmd.exe brings up black-on-white (white-background) windows, and running a `readline` client ([Joker](https://github.com/candid82/joker)) causes everything after the prompt to be black, until typing onto it. Other than the color differences,...

On branch master Your branch is up to date with 'origin/master'. Changes to be committed: modified: example/readline-demo/readline-demo.go modified: example/readline-im/readline-im.go modified: example/readline-multiline/readline-multiline.go modified: example/readline-pass-strength/readline-pass-strength.go modified: example/readline-remote/readline-remote-server/server.go modified: operation.go new file: prompt.go...