mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-04-03 06:03:33 +02:00
Bump maxVersion.
This commit is contained in:
@@ -755,8 +755,8 @@ var Buffer = Module("Buffer", {
|
|||||||
* vertical percentages. See {@link Buffer.scrollToPercent} for
|
* vertical percentages. See {@link Buffer.scrollToPercent} for
|
||||||
* parameters.
|
* parameters.
|
||||||
*/
|
*/
|
||||||
scrollToPercent: function scrollToPercent(horizontal, vertical)
|
scrollToPercent: function scrollToPercent(horizontal, vertical, dir)
|
||||||
Buffer.scrollToPercent(this.findScrollable(0, vertical == null), horizontal, vertical),
|
Buffer.scrollToPercent(this.findScrollable(dir || 0, vertical == null), horizontal, vertical),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Scrolls the currently active element to the given horizontal and
|
* Scrolls the currently active element to the given horizontal and
|
||||||
@@ -2078,7 +2078,8 @@ var Buffer = Module("Buffer", {
|
|||||||
|
|
||||||
mappings.add([modes.NORMAL], ["gg", "<Home>", "<scroll-top>"],
|
mappings.add([modes.NORMAL], ["gg", "<Home>", "<scroll-top>"],
|
||||||
"Go to the top of the document",
|
"Go to the top of the document",
|
||||||
function (args) { buffer.scrollToPercent(null, args.count != null ? args.count : 0); },
|
function (args) { buffer.scrollToPercent(null, args.count != null ? args.count : 0,
|
||||||
|
args.count != null ? 0 : -1); },
|
||||||
{ count: true });
|
{ count: true });
|
||||||
|
|
||||||
mappings.add([modes.NORMAL], ["G", "<End>", "<scroll-bottom>"],
|
mappings.add([modes.NORMAL], ["G", "<End>", "<scroll-bottom>"],
|
||||||
@@ -2093,7 +2094,7 @@ var Buffer = Module("Buffer", {
|
|||||||
else if (args.count)
|
else if (args.count)
|
||||||
buffer.scrollToPosition(null, args.count);
|
buffer.scrollToPosition(null, args.count);
|
||||||
else
|
else
|
||||||
buffer.scrollToPercent(null, 100);
|
buffer.scrollToPercent(null, 100, 1);
|
||||||
},
|
},
|
||||||
{ count: true });
|
{ count: true });
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
<Description
|
<Description
|
||||||
em:id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"
|
em:id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"
|
||||||
em:minVersion="8.0"
|
em:minVersion="8.0"
|
||||||
em:maxVersion="22.0a1"/>
|
em:maxVersion="24.*"/>
|
||||||
</em:targetApplication>
|
</em:targetApplication>
|
||||||
</Description>
|
</Description>
|
||||||
</RDF>
|
</RDF>
|
||||||
|
|||||||
Reference in New Issue
Block a user