Activity for Kristofer Hamnell

  • Kristofer Hamnell Kristofer Hamnell modified a comment on discussion Help

    I'm currently trying some things and one thing that I've noticed a need for is a way to create a heirachial structure for ValueArgs and SwitchArgs example: I've created a vector<class> as follows: class Person { int id; string name; int age; } vector<Person> people; and I want to search this depending on wich switch I use, example: people_search --search --id 10 people_search -si 10 people_search --search --name donald people_search -sn donald people_search --search --age 21 people_search -sa 21...

  • Kristofer Hamnell Kristofer Hamnell posted a comment on discussion Help

    I'm currently trying some things and one thing that I've noticed a need for is a way to create a heirachial structure for ValueArgs and SwitchArgs example: I've created a vector<class> as follows: class Person { int id; string name; int age; } vector<Person> people; and I want to search this depending on wich switch I use, example: people_search --search --id 10 people_search -si 10 people_search --search --name donald people_search -sn donald people_search --search --age 21 people_search -sa 21...

  • Kristofer Hamnell Kristofer Hamnell posted a comment on discussion Help

    It would be nice to have a way to hide commands from the --help message, either with the cmd.paste function or as an extra flag in the creation of the command

  • Kristofer Hamnell Kristofer Hamnell posted a comment on discussion Help

    At the moment, when disabling help the help message still shows up on 'invalid command' and other error messages only way I've found to fix this is to turn default error messages off completely

1