1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 16:54:11 +01:00

Add C_<C-t>.

This commit is contained in:
Kris Maglione
2011-08-16 21:38:22 -04:00
parent 1ad3fdf195
commit ee06a63dba
6 changed files with 45 additions and 19 deletions

View File

@@ -128,9 +128,10 @@ var Map = Class("Map", {
if (this.names[0] != ".") // FIXME: Kludge.
mappings.repeat = repeat;
if (this.executing)
if (this.executing) {
util.dumpStack(_("map.recursive", args.command));
dactyl.assert(!this.executing, _("map.recursive", args.command));
throw AssertionError(_("map.recursive", args.command));
}
try {
this.preExecute(args);
@@ -144,6 +145,7 @@ var Map = Class("Map", {
finally {
this.executing = false;
this.postExecute(args);
dactyl.triggerObserver("mappings.executed", this, args);
}
return res;
}