PrettyPrompt icon indicating copy to clipboard operation
PrettyPrompt copied to clipboard

A cross-platform command line input library that provides syntax highlighting, autocompletion, history and multi-line input.

Results 31 PrettyPrompt issues
Sort by recently updated
recently updated
newest added

Paste ```abc``` by Ctrl+V. Pressing Ctrl+Z will remove ```abc``` - that's correct. Paste ```abc``` by right click Pressing Ctrl+Z will remove ```abc``` one character after another (```abc``` -> ```ab``` ->...

I haven't found a way to change the keybinds for caret movement and other things like that, and it would be nice to be able to be able to change...

enhancement

Now we allocate an empty space under the current line for displaying the completion list and its items descriptions. ![image](https://user-images.githubusercontent.com/11704036/150186870-bf661558-bc6d-4745-b7d7-6ab7b6a624d8.png) We could solve this space wasting by dynamically moving the...

enhancement

![image](https://user-images.githubusercontent.com/11704036/158871089-d1cf3338-c7d1-441a-a4b5-891dc5914d60.png)

bug

E.g. `a\t` will result in `apple` output in the example app because Tab will submit the completion item. Or `x\n\y` will submit `x` as input and `y` will be ignored....

bug

The set of matching characters should be configurable.

enhancement

![5QcpYNrbBb](https://user-images.githubusercontent.com/11704036/145097798-e9abb2b2-72f7-4e7c-b728-6b79bd9f2698.gif)

bug

Could be further improved by using Levenshtein distance instead of length comparison (=```Math.Abs(...)```expressions).

enhancement