Bug #1043
- Fixed bug where bash autocompletion did not work for aliases. - Added new '_aliases' helper command.
This commit is contained in:
committed by
Paul Beckingham
parent
275132c1fa
commit
4f76e0ed7c
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user