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

test mozdev homepage with no branding

This commit is contained in:
Martin Stubenschrott
2008-02-29 16:59:50 +00:00
parent 57debc00e0
commit 2168ef2c2d

View File

@@ -402,11 +402,13 @@ vimperator.Mappings = function () //{{{
for (var i = 0; i < modes.length; i++)
{
if (modes[i] == vimperator.modes.NORMAL)
modeSign += 'n';
modeSign += "n";
if ((modes[i] == vimperator.modes.INSERT || modes[i] == vimperator.modes.TEXTAREA) && modeSign.indexOf("i") == -1)
modeSign += 'i';
modeSign += "i";
if (modes[i] == vimperator.modes.COMMAND_LINE)
modeSign += 'c';
modeSign += "c";
if (modes[i] == vimperator.modes.MESSAGRE)
modeSign += "m";
}
var list = "<table>";