- Fixed bug where bash autocompletion did not work for aliases.
- Added new '_aliases' helper command.
This commit is contained in:
Scott Kostyshak 2012-07-28 15:01:15 -04:00 committed by Paul Beckingham
parent 275132c1fa
commit 4f76e0ed7c
9 changed files with 130 additions and 2 deletions

View file

@ -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;