1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 09:48:00 +01:00
This commit is contained in:
Kris Maglione
2008-10-11 06:27:07 +00:00
parent e985d55819
commit e69cba9ff3
2 changed files with 12 additions and 0 deletions

View File

@@ -65,6 +65,10 @@ liberator.Map.prototype = {
if (this.flags & liberator.Mappings.flags.ARGUMENT)
args.push(argument);
let self = this;
// FIXME: Kludge.
if (this.names[0] != ".")
liberator.mappings.repeat = function () self.action.apply(self, args);
return this.action.apply(this, args);
}