- TW-1405 Add command _zshattributes (thanks to Roman Inflianskas).
This commit is contained in:
Paul Beckingham 2014-08-31 11:01:53 -04:00
parent a77e50b441
commit 7a85554924
12 changed files with 118 additions and 1 deletions

View file

@ -38,6 +38,7 @@
#include <CmdAliases.h>
#include <CmdAnnotate.h>
#include <CmdAppend.h>
#include <CmdAttributes.h>
#include <CmdBurndown.h>
#include <CmdCalc.h>
#include <CmdCalendar.h>
@ -155,6 +156,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdUrgency (); all[c->keyword ()] = c;
c = new CmdUUIDs (); all[c->keyword ()] = c;
c = new CmdVersion (); all[c->keyword ()] = c;
c = new CmdZshAttributes (); all[c->keyword ()] = c;
c = new CmdZshCommands (); all[c->keyword ()] = c;
c = new CmdZshCompletionIds (); all[c->keyword ()] = c;
c = new CmdZshCompletionUuids (); all[c->keyword ()] = c;