Daniele Pallastrelli
Daniele Pallastrelli
Thank you very much for your feedback, @sdebionne . Actually, the telnet server is complete and working for over a year, with the echo and the autocompletion. Please could you...
I tested with Putty and had the same problem. For the echo you can set: Local echo: "Force on" in the terminal settings. However, history and autocompletion still don't work....
@hanyukang thank you very much. Currently, the `Menu::Insert` method does not work with `std::bind` (and unfortunately it does not work with free functions, either). While I understand why free functions...
Free function works with commit 63eb029
Thank you very much @mredd I'm not a big fan of clang-format because I never found a .clang-format file that fully satisfied my taste. I'd like very much to use...
OK @mredd , you almost convinced me :-) Just a couple of thing: 1. the tests fails! (see the github CI output, please) 2. I'd like the ColumnLimit a little...
Actually, point 2) already works. For example, to support a custom struct `foo`, one can use: struct foo { friend istream & operator >> (istream &in, foo& p); int value;...
It would be a great feature, indeed. Unfortunately, C++ templates do not work with default arguments, and cli library is implemented with template functions. However, if someone in the community...
This design decision mirrors the behavior of tools like the bash shell, which keeps a history of commands. This can be helpful for situations like accidentally misspelling a command, where...
While not yet supported, these features are something we're considering for future development. Our development roadmap is heavily influenced by user feedback. You can upvote feature requests, and your input...