mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 06:47:58 +01:00
fix :map and :noremap to work with new multi-mode mappings
This commit is contained in:
@@ -603,7 +603,7 @@ function Commands() //{{{
|
||||
|
||||
if (rhs)
|
||||
{
|
||||
vimperator.mappings.add(new Map(vimperator.modes.NORMAL, [lhs],
|
||||
vimperator.mappings.add(new Map([vimperator.modes.NORMAL], [lhs],
|
||||
function() { vimperator.events.feedkeys(rhs); }, { rhs: rhs }
|
||||
));
|
||||
}
|
||||
@@ -730,7 +730,7 @@ function Commands() //{{{
|
||||
if (/^:/.test(rhs))
|
||||
{
|
||||
vimperator.mappings.add(
|
||||
new Map(vimperator.modes.NORMAL, [lhs], function() { vimperator.execute(rhs); }, { rhs: rhs })
|
||||
new Map([vimperator.modes.NORMAL], [lhs], function() { vimperator.execute(rhs); }, { rhs: rhs })
|
||||
);
|
||||
}
|
||||
else
|
||||
@@ -745,7 +745,7 @@ function Commands() //{{{
|
||||
// is created not at runtime
|
||||
if (map)
|
||||
vimperator.mappings.add(
|
||||
new Map(vimperator.modes.NORMAL, [lhs], map.action, { flags: map.flags, rhs: rhs })
|
||||
new Map([vimperator.modes.NORMAL], [lhs], map.action, { flags: map.flags, rhs: rhs })
|
||||
);
|
||||
else
|
||||
vimperator.echoerr("E475: Invalid argument: " + "{rhs} must be a existing singular mapping");
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user