mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-30 22:43:24 +02:00
Bug #1043
- Fixed bug where bash autocompletion did not work for aliases. - Added new '_aliases' helper command.
This commit is contained in:
parent
275132c1fa
commit
4f76e0ed7c
9 changed files with 130 additions and 2 deletions
|
@ -41,6 +41,7 @@
|
|||
#include <main.h>
|
||||
|
||||
#include <CmdAdd.h>
|
||||
#include <CmdAliases.h>
|
||||
#include <CmdAnnotate.h>
|
||||
#include <CmdAppend.h>
|
||||
#include <CmdBurndown.h>
|
||||
|
@ -111,6 +112,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 CmdCompletionAliases (); 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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue