From 645e72efcc334d89115a2d1e7a65dab1aac472ff Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Wed, 20 May 2020 08:58:13 -0400 Subject: [PATCH] Add evil bindings for w3m scrolling commands --- emacs/init.org | 2 ++ 1 file changed, 2 insertions(+) diff --git a/emacs/init.org b/emacs/init.org index e241ace..dfb16a1 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -4235,6 +4235,8 @@ Browsing the web from Emacs. Relies on having [[http://w3m.sourceforge.net/][w3m ("." . browse-url-default-browser))) :general ('normal w3m-mode-map "SPC" leader-map) + ('(normal visual motion) w3m-mode-map "C-f" #'w3m-scroll-up-or-next-url) + ('(normal visual motion) w3m-mode-map "C-b" #'w3m-scroll-down-or-previous-url) ('normal w3m-mode-map "J" #'w3m-previous-buffer) ('normal w3m-mode-map "K" #'w3m-next-buffer) ('normal w3m-mode-map "gs" #'w3m-search)