Behera

Results 18 issues of Behera

I see that the history is storing all command in it, known, unknown and the ones that return errors. Is there an option to store only the commands that run...

Is it possible to view the commands history, as in bash shell and execute one them with bang followed by command number, e.g.: `!5` to run the 5th command in...

enhancement

``` root_menu->Insert( "show_updt", [&](ostream& out, uint32_t cnt = 1) { // do stuff //... }, "Show next x updates"); ``` I tried registering the above handler, expecting the command to...

enhancement
help wanted

I want to add a command `quit` that does just what the built-in command `exit` does. Users of my application complain that they get an error when they type `quit`!

enhancement
help wanted

Is there support for flags on the command line? ``` auto root_menu_p = make_unique("demo"); root_menu_p->Insert("reboot", [&](std::ostream& out, uint32_t delay_s, bool force) { // blah // blah }, "Reboots after given...

``` demo> help Commands available: - help This help message - exit Quit the session - show_updt Show next x updates demo> help show_updt wrong command: help show_updt demo> help...

enhancement
help wanted

Does not seem to work in my app, is it supported?

enhancement
help wanted

``` struct hdr_histogram* hdr_hist; hdr_init(1, // Min value that can be recorded numeric_limits::max(), // Max value, doesn't work with numeric_limits::max() 1, // Number of significant digits, must be between 1...