Help: Improved the command summary in the help command

This commit is contained in:
Paul Beckingham 2016-09-05 09:09:23 -04:00
parent b0e8dfa290
commit 96554e913f
2 changed files with 11 additions and 10 deletions

View file

@ -54,15 +54,7 @@ static void welcome ()
{
std::cout << PACKAGE_STRING
<< "\n"
<< "\n"
<< " Commands:\n"
<< " tasksh> review [N] Task review session, with optional cutoff after N tasks\n"
<< " tasksh> list Or any other Taskwarrior command\n"
<< " tasksh> diagnostics Tasksh diagnostics\n"
<< " tasksh> help Tasksh help\n"
<< " tasksh> exec ls -al Any shell command. May also use '!ls -al'\n"
<< " tasksh> quit End of session. May also use 'exit'\n"
<< "\n";
<< cmdHelp ();
}
////////////////////////////////////////////////////////////////////////////////