Stanislav Lechev [0xAF]
Stanislav Lechev [0xAF]
I've made a memory buffered stream, which will be passed to `rl_outstream`. This way we can capture the readline's output and print it in the MSG window. I've decided to...
https://github.com/ulfalizer/readline-and-ncurses/blob/dcf6fb045db1df80f91c07b5ff60d3d1229c4221/rlncurses.c#L284 You should be able to do this: ```c char buf[64] = "set disable-completion on"; rl_parse_and_bind(buf); ``` Just keep in mind that the `rl_parse_and_bind()` parameter could not be const, or...
Please take a look at this reworked code. I've made some simple changes and one bigger change to use more bash internals, instead of external tools. I've made most of...