use better names for command configs

This commit is contained in:
Siddharth Agarwal 2013-07-31 02:18:51 -07:00
parent e4c0b4786c
commit 31f175fbc7
4 changed files with 21 additions and 21 deletions

View file

@ -7,7 +7,7 @@ var GitError = Errors.GitError;
var Warning = Errors.Warning;
var CommandResult = Errors.CommandResult;
var gitCommandConfig = {
var commandConfig = {
commit: {
sc: /^(gc|git ci)($|\s)/,
regex: /^git +commit($|\s)/,
@ -474,6 +474,6 @@ var instantCommands = [
}]
];
exports.gitCommandConfig = gitCommandConfig;
exports.commandConfig = commandConfig;
exports.instantCommands = instantCommands;