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

The length of ColorTableFg is 8, and when c>37, array out of bounds will occur

OpenBSD is removing the `syscall(2)` interface soon and ioctl operations using `syscall.Syscall6` will fail to link at runtime: ``` $ go test tmpdir: /tmp readline.test:/tmp/go-build2875288623/b001/readline.test: undefined symbol 'syscall' ld.so: readline.test:...

In my app, I'd like to disable the bell programmatically. It seems that making that a config option makes sense and someone else might also want to do so. The...

Hey there, I'm curious, would it be possible to share the instance between two differents threads ? What I want to achieve is the following: - main thread in main.go...

When piping stdin from another process on windows, readline fails to read the piped stdin. Say my binary does this: ```go func main() { rl, err := NewEx(&Config{}) if err...

According to https://github.com/jwalton/go-supportscolor the technique here is valid on all supported versions of Windows. Without this change, [256-color ANSI codes](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) will panic. For example, `48;` sets a background color from...

- Can I use `readline.NewRawReader()` as `os.Stdin` on Windows? - Can `readline.NewRawReader()` support `Ctrl + Space`? I want to read `Ctrl + Space` on Windows, can `readline.NewRawReader()` help? ```go package...

Hi, Firstly, thank you for this excellent project! In this PR, I've updated the build tags in a few files to add support for zOS, which is an IBM Z...

In our environment, it is not possible to install realine and rlwrap tools which make our life easier to use Oracle CLI tools like rman and sqlplus. Your project is...

When running the examples/readline-demo, you can enter the `sleep` command which causes the loop to sleep for 4 seconds before it calls Readline() again. If you press ctrl-d during the...