CmdCommands: Added 'commands' command to show command internal details

This commit is contained in:
Paul Beckingham 2015-08-01 15:47:21 -04:00
parent 234ad3d03b
commit d390433ec7
12 changed files with 212 additions and 12 deletions

View file

@ -106,6 +106,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdCalendar (); all[c->keyword ()] = c;
c = new CmdColor (); all[c->keyword ()] = c;
c = new CmdColumns (); all[c->keyword ()] = c;
c = new CmdCommands (); all[c->keyword ()] = c;
c = new CmdCompletionAliases (); all[c->keyword ()] = c;
c = new CmdCompletionColumns (); all[c->keyword ()] = c;
c = new CmdCompletionCommands (); all[c->keyword ()] = c;