nim-noise icon indicating copy to clipboard operation
nim-noise copied to clipboard

Nim implementation of linenoise command line editor

Results 7 nim-noise issues
Sort by recently updated
recently updated
newest added

First of all, good work on this library! One thing confuses me a little bit though: do you really support editing multiple lines? I tried: * Entering text till the...

Hello, it seems this is not possible at the moment, but that it could be allowed by enabling the injection of custom procs to the Noise.procs list. Let me know...

Hello, in Emacs, but also GNU readline, bash and other shell the case editing behavior is different than used here. In Emacs when you press one of these keys inside...

in bash, python3 and pretty much all repls, ctrl C doesn't run the current entered line but also doesn't exit the repl, whereas ctrl D (when there is no input...

* zsh allows `undo` last editing command, so that we can undo the effects of `CTRL-W` for example * [EDIT] zsh allows to skip duplicates when navigating history (they're saved...

enhancement

RIGHT_ARROW_KEY works but not `ALT + RIGHT_ARROW_KEY` which prints `[C` instead of `move cursor right by one word` could shift `SHIFT + RIGHT_ARROW_KEY` be used maybe?

bug

zsh allows the very useful history recall based on what you already started typing so that: abc will recall abcfoo but not bar if abcfoo and bar are in history,...

enhancement