I can insert text again

This commit is contained in:
Fabian Jakobs 2011-07-26 17:47:07 +02:00
commit 6808e3bb35

View file

@ -74,6 +74,9 @@ var CommandManager = function(commands) {
}
this.exec = function(command, env, args) {
if (typeof command === 'string')
command = this.commands[command];
command.exec(env, args || {});
};