1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 20:24:12 +01:00

Fix missing ancestor modes in :listkeys, recognize paths like c:/ on Windows®, and elide redundant -group=user in :style serialization.

This commit is contained in:
Kris Maglione
2011-04-24 11:07:10 -04:00
parent 2b30df839f
commit 4166f78b73
4 changed files with 8 additions and 6 deletions

View File

@@ -689,7 +689,7 @@ var Mappings = Module("mappings", {
iterate: function (args, mainOnly) {
let modes = [this.getMode(args)];
if (!mainOnly)
modes = modes.concat(modes[0].bases);
modes = modes.concat(modes[0].allBases);
let seen = {};
// Bloody hell. --Kris