Helper Command

- Implemented _columns to simply list all supported columns, in a
  machine-readable format.
This commit is contained in:
Paul Beckingham
2011-07-16 13:18:06 -04:00
parent 27a04b29f5
commit 05a53778ea
4 changed files with 39 additions and 1 deletions

View File

@@ -104,6 +104,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 CmdCompletionColumns (); all[c->keyword ()] = c;
c = new CmdCompletionCommands (); all[c->keyword ()] = c;
c = new CmdCompletionConfig (); all[c->keyword ()] = c;
c = new CmdCompletionIds (); all[c->keyword ()] = c;