summaryrefslogtreecommitdiffstats
path: root/conkeror
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-01-26 12:38:10 +0100
committerGravatar Tom Willemse2014-01-26 12:38:10 +0100
commitb99b0632194fa24a66b62ab04da1464eb47476de (patch)
tree9a9642a4f7c12708800a2ef686afb3271d2e8048 /conkeror
parent8e12944b02a8694e110018ab0aae243c09cc3828 (diff)
downloaddotfiles-b99b0632194fa24a66b62ab04da1464eb47476de.tar.gz
dotfiles-b99b0632194fa24a66b62ab04da1464eb47476de.zip
Remove useless definitions
Diffstat (limited to 'conkeror')
-rw-r--r--conkeror/.conkerorrc/init.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/conkeror/.conkerorrc/init.js b/conkeror/.conkerorrc/init.js
index e3b53f8..3385ad1 100644
--- a/conkeror/.conkerorrc/init.js
+++ b/conkeror/.conkerorrc/init.js
@@ -281,13 +281,3 @@ register_user_stylesheet(
oni_add_sheet("github.css");
oni_add_sheet("help.css");
oni_add_sheet("git-scm.css");
-
-// Overwrite built-in one
-function scroll_horiz_complete (buffer, n, y) {
- var w = buffer.focused_frame;
- w.scrollTo (n > 0 ? w.scrollMaxX : 0, y == null ? w.scrollY : y);
-}
-
-interactive("scroll-top-left",
- "Scroll the current frame all the way to the top left",
- function (I) { scroll_horiz_complete(I.buffer, -1, 0); });