-
Notifications
You must be signed in to change notification settings - Fork 22
Description
I found the struct in src/Control/Keywords.hpp, but I am unclear how to get this to show up as + instead of '--' when displayed for a single item, as that is templated in Base/print.hpp. SPecifically, it looks like Control/Inciter/CmdLine/Parser.cpp send the following prefix to print.hpp for all arguments on line 85-8:
if (argc == 1 || helpcmd) {
print.help< tk::QUIET >( tk::inciter_executable(),
cmdline.get< tag::cmdinfo >(),
"Command-line Parameters:", "-" );
I am not sure of an easy way to change that for only one or some of the members as that will get passed along. I could put in if check into the print.hpp and change the prefix if we are on the keyword 'restart'. Kinda hacky, but it should work.
I am going to prep for my meeting, but I'll return this later.