editline icon indicating copy to clipboard operation
editline copied to clipboard

A small replacement for GNU readline() for UNIX

Results 15 editline issues
Sort by recently updated
recently updated
newest added

This PR, when completed, shall close #37 and close #48. The handling for multibyte in the prompt is done, but not for the input.

## Error Description So I'm using `rl_attempted_completion_function` to add my own keyword completion, but ever since that the **filepath completion** doesn't work as expected, it will crash with free(): double...

I try to use alternative API ``` /* For wcwidth() */ #define _XOPEN_SOURCE 700 #include #include #include #include #include #include int kurzor; static int readline_proxy; static bool readline_proxy_is_valid = false;...

I have a simple application that uses editline v1.17.1, and returns 4 possible completions on the empty string. The 4 completions are displayed correctly, however the prompt is not re-displayed,...

Any idea if UTF support can be added to this lib? Preferably without depending on locale stuff from glibc

Readline and libedit both use [Control-V](https://en.wikipedia.org/wiki/Control-V) to indicate a verbatim character (including a control char). Editline should somehow make it a thing.

Editline currently uses a "one byte per column" heuristic, and one way that breaks down is when it encounters colored prompts. The way readline (and libedit) handles this issue is...

Currently Debian distributes what it seems to be [a very old version in comparison](https://tracker.debian.org/pkg/editline) (1.12), based solely in the version numbering and release date, I believe is one of the...

gdb 7.6 seems to be the most elaborate readline user in sabotage linux, but it can be [tricked][0], [to][1] link against libedit instead of readline, and i hoped as well...

In a project of mine, I wrote a completer function that does only `return strdup("\t");` (to disable completion of filenames, which are meaningless for my project). However, this prints `^I`...