1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-17 01:35:47 +01:00

Ignore arg/motion maps when shorter matching map is found. Closes issue #365.

This commit is contained in:
Kris Maglione
2011-02-12 19:52:53 -05:00
parent bc953c5d9b
commit 61476fca47
2 changed files with 19 additions and 9 deletions

View File

@@ -44,12 +44,7 @@ var ProcessorStack = Class("ProcessorStack", {
if (this.ownsBuffer)
statusline.updateInputBuffer(this.processors.length ? this.buffer : "");
if (this.processors.length) {
result = Events.KILL;
if (this.actions.length && options["timeout"])
this.timer = services.Timer(this, options["timeoutlen"], services.Timer.TYPE_ONE_SHOT);
}
else if (this.actions.length) {
if (!this.processors.some(function (p) !p.extended) && this.actions.length) {
if (this._actions.length == 0) {
dactyl.beep();
events.feedingKeys = false;
@@ -60,6 +55,13 @@ var ProcessorStack = Class("ProcessorStack", {
events.dbg("ACTION RES: " + res);
}
result = res === Events.PASS ? Events.PASS : Events.KILL;
if (res !== Events.PASS)
this.processors.length = 0;
}
else if (this.processors.length) {
result = Events.KILL;
if (this.actions.length && options["timeout"])
this.timer = services.Timer(this, options["timeoutlen"], services.Timer.TYPE_ONE_SHOT);
}
else if (result !== Events.KILL && !this.actions.length &&
(this.events.length > 1 ||
@@ -98,7 +100,7 @@ var ProcessorStack = Class("ProcessorStack", {
if (force && this.processors.length === 0)
events.processor = null;
return this.processors.length == 0;
return this.processors.length === 0;
},
process: function process(event) {
@@ -238,6 +240,8 @@ var KeyArgProcessor = Class("KeyArgProcessor", KeyProcessor, {
this.wantCount = wantCount;
},
extended: true,
onKeyPress: function onKeyPress(event) {
if (Events.isEscape(event))
return Events.KILL;