1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-18 07:25:49 +01:00

changed ]n and ]p to ]] and [[

This commit is contained in:
Martin Stubenschrott
2007-11-23 02:05:19 +00:00
parent 794e80c1a8
commit 4a8ae26cdd
4 changed files with 5 additions and 3 deletions

View File

@@ -422,7 +422,7 @@ vimperator.Mappings = function () //{{{
flags: vimperator.Mappings.flags.COUNT
}
));
addDefaultMap(new vimperator.Map([vimperator.modes.NORMAL], ["]n"],
addDefaultMap(new vimperator.Map([vimperator.modes.NORMAL], ["]]"],
function (count) { vimperator.buffer.followDocumentRelationship("next"); },
{
shortHelp: "go to 'next' or '>' if it exists. Beep otherwise.",
@@ -430,7 +430,7 @@ vimperator.Mappings = function () //{{{
flags: vimperator.Mappings.flags.COUNT
}
));
addDefaultMap(new vimperator.Map([vimperator.modes.NORMAL], ["]p"],
addDefaultMap(new vimperator.Map([vimperator.modes.NORMAL], ["[["],
function (count) { vimperator.buffer.followDocumentRelationship("previous"); },
{
shortHelp: "go to 'prev', 'previous' or '<' if it exists. Beep otherwise.",