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 am using readline in my project and have recently run tests for it with race detector enabled. My tests caught potential race condition in your code. As you can...

If I ^R and ^C while there are zero history matches, I get a panic on: ```o.buf.Set(o.history.showItem(o.history.current.Value))``` (as apparently o.history.current isn't set) https://github.com/chzyer/readline/blob/master/search.go#L118

We're trying to figure out an issue on Windows, whereby the a s d f keys cease to work when losing and regaining focus in the app. The only external...

Hi! Seeing this problem: expected: ``` on|e two three ``` ^W ``` |e two three ``` actual: ``` on|e two three ``` ^W ``` | ``` Thanks!

Found with the following: 1. enter a multi-line entry in the history (e.g. `AddHistory("foo\nbar")`) 2. recall the multi-line entry. The cursor is positioned (correctly) at the end of the last...

bug

In a simple app, using Alt tab seems to send the `alt` signal to readline, which switches to "Esc" mode.. but hitting `Alt+Tab` to switch, prevents the key release event...

bug

Suggested here: https://forum.cockroachlabs.com/t/cli-identical-command-question/560 """when using the CLI, i noticed that if i keep doing the same command (via up arrow) over and over again such as: SELECT * FROM cockroachIsTotallyAsesome...

hello - is readline actually storing/saving commands into something like a history buffer? **_Readline is a pure go(golang) implementation for GNU-Readline kind library_** sorry for my confusion, but my linux...

Hi @chzyer , a strange panic: 1. press TAB and display the auto-complete candidates 2. TAB again and move the cursor to candidates 3. press BACKSPACE 4. panic colWidth is...

Hey! I'll start with giving you a context: Imagine a program which takes newlines, with the prompt "foobar". `foobar> this is a te` but... just as I start typing, there...