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

convert single quotes to double quotes

This commit is contained in:
Doug Kearns
2007-11-06 11:22:39 +00:00
parent e6a678257d
commit b204012556
15 changed files with 75 additions and 75 deletions

View File

@@ -549,7 +549,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)
@@ -572,7 +572,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."
}
));
@@ -1209,14 +1209,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
@@ -1305,14 +1305,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