microrl-remaster icon indicating copy to clipboard operation
microrl-remaster copied to clipboard

Micro Read Line library for small and embedded devices [REMASTER]

Results 5 microrl-remaster issues
Sort by recently updated
recently updated
newest added

I think it would be very useful to have a more generic option to act on any control signal. For me, I have it set so that can catch ^W...

History navigation resets the command line content, even if the history is empty or `cursor DOWN` key is pressed when the command is typing

При использовании USB CDC функция вывода работает криво , сообщение выводятся рваные нужно использовать в таком виде int print(microrl_t* mrl, const char* str) { MICRORL_UNUSED(mrl); uint32_t i = 0; CDC_Transmit_FS((unsigned...

Hello, I found a bug when using the auto-complete feature: If no result is found, the auto-complete returns directly: ```c if (cmplt_tkn_arr[0] == NULL) { return microrlERRCPLT; } ``` So...

[0aa085c](https://github.com/dimmykar/microrl-remaster/pull/12/commits/0aa085ca3a15591a7ce8d373fb9a90a0e9fca5d8) - removes the typing in one line of the start prompt when resetting the device. [e7f8f6b](https://github.com/dimmykar/microrl-remaster/pull/12/commits/e7f8f6b8abf97333113ff36f32b480c95a9b78b7) - fix no prompt print, when Ctrl+C pressed, like real CLI