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:
@@ -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.",
|
||||
|
||||
Reference in New Issue
Block a user