1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 15:48:00 +01:00

move Mappings() to the vimperator namespace

This commit is contained in:
Doug Kearns
2007-10-22 06:38:07 +00:00
parent 160035e9ee
commit af360fbc77
3 changed files with 56 additions and 56 deletions

View File

@@ -625,7 +625,7 @@ vimperator.Events = function() //{{{
vimperator.input.count = parseInt(count_str, 10);
if (isNaN(vimperator.input.count))
vimperator.input.count = -1;
if (map.flags & Mappings.flags.ARGUMENT)
if (map.flags & vimperator.Mappings.flags.ARGUMENT)
{
vimperator.input.pendingArgMap = map;
vimperator.input.buffer += key;
@@ -640,7 +640,7 @@ vimperator.Events = function() //{{{
vimperator.input.buffer = "";
}
// no count support for these commands yet
else if (map.flags & Mappings.flags.MOTION)
else if (map.flags & vimperator.Mappings.flags.MOTION)
{
vimperator.input.pendingMotionMap = map;
vimperator.input.buffer = "";