mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
Commands - shell
- Migrated handleShell to CmdShell. - Note there is a segfault bug that will probably go away by itself when Context::parse is obsoleted.
This commit is contained in:
parent
4857269d12
commit
b075f1252c
9 changed files with 161 additions and 76 deletions
|
@ -36,6 +36,7 @@
|
|||
#include <CmdInfo.h>
|
||||
#include <CmdInstall.h>
|
||||
#include <CmdLogo.h>
|
||||
#include <CmdShell.h>
|
||||
#include <CmdShow.h>
|
||||
#include <CmdTags.h>
|
||||
#include <CmdTip.h>
|
||||
|
@ -58,6 +59,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdInfo (); all[c->keyword ()] = c;
|
||||
c = new CmdInstall (); all[c->keyword ()] = c;
|
||||
c = new CmdLogo (); all[c->keyword ()] = c;
|
||||
c = new CmdShell (); all[c->keyword ()] = c;
|
||||
c = new CmdShow (); all[c->keyword ()] = c;
|
||||
c = new CmdTags (); all[c->keyword ()] = c;
|
||||
c = new CmdTip (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue