cli icon indicating copy to clipboard operation
cli copied to clipboard

A library for interactive command line interfaces in modern C++

Results 46 cli issues
Sort by recently updated
recently updated
newest added

#229 Changes: * add to `*keyboard.h` support for CTRL-L; * a CTRL-L in `Terminal::Keypressed()` clears the screen by flushing the escape string on the ostream; * after a CTRL-L, restore...

I get this warning using a GCC 12.2.0 cross compiler for AArch64 (in particular, the gcc built in to Xilinx Vitis 2023.1): ```console In file included from daniele77-cli/include/cli/detail/keyboard.h:44, from daniele77-cli/include/cli/clilocalsession.h:36,...

suspended

Hello y'all, first of all awesome work!!! I'm using `cli` in my `libc++/clang` project and I'm getting the error: ``` /usr/bin/../include/c++/v1/__memory/unique_ptr.h:66:19: error: invalid application of 'sizeof' to an incomplete type...

This PR resolves an issue where a mutex was being used in servant thread before it was initialized, causing undefined behavior. The mutex is now properly initialized before any use.

I am trying to retrieve the string array parameters input by the terminal in the menu, which do not include quotation marks or spaces. I need to retrieve the original...

enhancement

Implemented FunctionHelp() similar to Help(). It is now possible to do ``` cli> help history Show the history ```