1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 13:17:59 +01:00

Fallback to count of parent mapping in motion maps. 2dw == d2w == 8d2w.

This commit is contained in:
Kris Maglione
2011-08-05 17:00:28 -04:00
parent f502617a84
commit a3aa33d0d3
2 changed files with 4 additions and 2 deletions

View File

@@ -231,7 +231,7 @@ var KeyProcessor = Class("KeyProcessor", {
countStr: "",
command: "",
get count() this.countStr ? Number(this.countStr) : null,
get count() this.countStr ? Number(this.countStr) : this.main.params.count,
append: function append(event) {
this.events.push(event);