Peter M. Groen
/
CLI11
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
209c10aa322a2f70ee6c968afbc0cb5174cd2da3
Authored by
Henry Fredrick Schreiner
2017-02-12 18:38:41 -0500
1 parent
71a29f43
Updated usage line for subcommands
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
CHANGELOG.md
include/CLI/App.hpp
CHANGELOG.md
View file @
209c10a
1
1
## Version 0.4 (in progress)
2
2
3
+* Updates to help print
4
+
3
5
## Version 0.3
4
6
5
7
* Added `->requires`, `->excludes`, and `->envname` from [Plumbum](http://plumbum.readthedocs.io/en/latest/)
...
...
include/CLI/App.hpp
View file @
209c10a
...
...
@@ -620,6 +620,9 @@ public:
620
620
pos=true;
621
621
}
622
622
623
+ if(subcommands.size() > 0)
624
+ out << " [SUBCOMMANDS]";
625
+
623
626
out << std::endl << std::endl;
624
627
625
628
// Positional descriptions
...
...