1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-23 21:11:25 +02:00

fix :map and :noremap to work with new multi-mode mappings

This commit is contained in:
Doug Kearns
2007-09-11 04:09:15 +00:00
parent c13127eb0b
commit 9468bf8301
2 changed files with 6 additions and 5 deletions
+3 -2
View File
@@ -212,10 +212,11 @@ function Mappings() //{{{
for (var i = 0; i < map.names.length; i++)
{
for (var j = 0; j < map.modes.length; j++)
removeMap(map.modes[0], map.names[i]);
removeMap(map.modes[j], map.names[i]);
}
user[map.mode].push(map);
for (var k = 0; k < map.modes.length; k++)
user[map.modes[k]].push(map);
}
this.remove = function(mode, cmd)