diff --git a/build/bundle.js b/build/bundle.js index 52c310e1..505a3207 100644 --- a/build/bundle.js +++ b/build/bundle.js @@ -9954,7 +9954,7 @@ var parse = function(str) { _.each(commands.getRegexMap(), function (map, thisVCS) { _.each(map, function(regex, thisMethod) { if (regex.exec(str)) { - vcs = thisVCS; // XXX get from regex map + vcs = thisVCS; method = thisMethod; options = str.slice(vcs.length + 1 + method.length + 1); } @@ -23425,7 +23425,7 @@ var parse = function(str) { _.each(commands.getRegexMap(), function (map, thisVCS) { _.each(map, function(regex, thisMethod) { if (regex.exec(str)) { - vcs = thisVCS; // XXX get from regex map + vcs = thisVCS; method = thisMethod; options = str.slice(vcs.length + 1 + method.length + 1); } diff --git a/src/js/commands/index.js b/src/js/commands/index.js index abddec00..4777bf69 100644 --- a/src/js/commands/index.js +++ b/src/js/commands/index.js @@ -85,7 +85,7 @@ var parse = function(str) { _.each(commands.getRegexMap(), function (map, thisVCS) { _.each(map, function(regex, thisMethod) { if (regex.exec(str)) { - vcs = thisVCS; // XXX get from regex map + vcs = thisVCS; method = thisMethod; options = str.slice(vcs.length + 1 + method.length + 1); }