Canonical use of printCommandDetails

For those of you experienced with juce::ConsoleApplication, what is the ideal way to use

void printCommandDetails (const ArgumentList &, const Command &) const?

I have already added several commands to my ConsoleApplication, which of course include both a shortDescription and longDescription.

However, I cannot (yet) figure out a simple way to get the longDescription to print from any command.

I thought maybe it’d be possible to add multiple help commands, e.g. one for each command, where they’d print the longDescription, but I don’t think addHelpCommand is capable of being used like this.

So if I enter $ my_console_app --help, I only get the basic help message along with the list of all added commands, each just with the short text.

And if I enter $ my_console_app --command1 --help, it actually acts just the same as if I had written only --help.

So I believe I must use printCommandDetailsmanually, but am not quite sure where it is supposed to fit.