Added support for visual depiction of unsupported commands

This commit is contained in:
Jeff Everett
2015-07-27 03:45:19 -06:00
parent 4be3931cb5
commit e1c221273c
9 changed files with 152 additions and 25 deletions

View File

@@ -21,6 +21,8 @@ function Settings(options) {
// allow null options
options = options || {};
this.displayMode = get(options.displayMode, false);
this.breakOnUnsupportedCmds = get(options.breakOnUnsupportedCmds, true);
this.errorColor = get(options.errorColor, "#cc0000");
}
module.exports = Settings;