1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 20:57:58 +01:00

Fix <C-u>/<C-d>.

Closes issue #252.
This commit is contained in:
Doug Kearns
2011-01-10 14:48:03 +11:00
parent 3eeee36708
commit 7254ce5910

View File

@@ -776,7 +776,7 @@ var Buffer = Module("buffer", {
if (options["scroll"] > 0) if (options["scroll"] > 0)
this.scrollLines(options["scroll"] * direction); this.scrollLines(options["scroll"] * direction);
else else
this.scrollPages(direction / 2); this.scrollVertical("pages", direction / 2);
}, },
findScrollable: function findScrollable(dir, horizontal) { findScrollable: function findScrollable(dir, horizontal) {