1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-04 03:25:47 +01:00

convert single quotes to double quotes

This commit is contained in:
Doug Kearns
2007-11-09 11:46:40 +00:00
parent d97b2bf942
commit 9dc9b7e49c
14 changed files with 95 additions and 95 deletions

View File

@@ -499,7 +499,7 @@ vimperator.Mappings = function() //{{{
flags: vimperator.Mappings.flags.COUNT
}
));
addDefaultMap(new vimperator.Map(vimperator.modes.NORMAL, ['<C-^>', '<C-6>'],
addDefaultMap(new vimperator.Map(vimperator.modes.NORMAL, ["<C-^>", "<C-6>"],
function()
{
if (vimperator.tabs.getTab() == vimperator.tabs.alternate)
@@ -522,7 +522,7 @@ vimperator.Mappings = function() //{{{
},
{
short_help: "Select the alternate tab",
usage: ['<C-^>'],
usage: ["<C-^>"],
help: "The alternate tab is the last selected tab. This provides a quick method of toggling between two tabs."
}
));
@@ -1077,14 +1077,14 @@ vimperator.Mappings = function() //{{{
}
));
addDefaultMap(new vimperator.Map(vimperator.modes.HINTS, [","],
function() { vimperator.input.buffer += ','; vimperator.hints.setCurrentState(0); },
function() { vimperator.input.buffer += ","; vimperator.hints.setCurrentState(0); },
{
cancel_mode: false,
always_active: true
}
));
addDefaultMap(new vimperator.Map(vimperator.modes.HINTS, [":"],
function() { vimperator.commandline.open(':', '', vimperator.modes.EX); },
function() { vimperator.commandline.open(":", "", vimperator.modes.EX); },
{
cancel_mode: false,
always_active: true
@@ -1173,14 +1173,14 @@ vimperator.Mappings = function() //{{{
// tab management
addDefaultMap(new vimperator.Map(vimperator.modes.HINTS, ["<C-n>"],
function() { vimperator.tabs.select('+1', true); },
function() { vimperator.tabs.select("+1", true); },
{
cancel_mode: true,
always_active: true
}
)); // same as gt, but no count supported
addDefaultMap(new vimperator.Map(vimperator.modes.HINTS, ["<C-p>"],
function() { vimperator.tabs.select('-1', true); },
function() { vimperator.tabs.select("-1", true); },
{
cancel_mode: true,
always_active: true