mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Commands - edit
- Migrated edit.cpp to CmdEdit.
This commit is contained in:
parent
ed97fcc108
commit
9af1c71daf
9 changed files with 135 additions and 88 deletions
|
@ -30,6 +30,7 @@
|
|||
#include <Command.h>
|
||||
#include <CmdCustom.h>
|
||||
#include <CmdDiagnostics.h>
|
||||
#include <CmdEdit.h>
|
||||
#include <CmdExec.h>
|
||||
#include <CmdHelp.h>
|
||||
#include <CmdInfo.h>
|
||||
|
@ -50,6 +51,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
|
||||
c = new CmdCompletionVersion (); all[c->keyword ()] = c;
|
||||
c = new CmdDiagnostics (); all[c->keyword ()] = c;
|
||||
c = new CmdEdit (); all[c->keyword ()] = c;
|
||||
c = new CmdExec (); all[c->keyword ()] = c;
|
||||
c = new CmdHelp (); all[c->keyword ()] = c;
|
||||
c = new CmdInfo (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue