From dd70f943b6b443f2b56d166082e21575c5708ea0 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Wed, 26 Feb 2020 13:11:09 -0500 Subject: [PATCH] Add w3m keybindings to switch tabs --- emacs/init.org | 2 ++ 1 file changed, 2 insertions(+) diff --git a/emacs/init.org b/emacs/init.org index dfc7c6e..7cda7dc 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -3761,6 +3761,8 @@ Browsing the web from Emacs. Relies on having [[http://w3m.sourceforge.net/][w3m w3m-use-tab-line nil) :general ('normal w3m-mode-map "SPC" leader-map) + ('normal w3m-mode-map "J" #'w3m-previous-buffer) + ('normal w3m-mode-map "K" #'w3m-next-buffer) ('normal w3m-mode-map "gs" #'w3m-search) ('normal w3m-mode-map "gS" #'w3m-search-new-session) ('normal w3m-mode-map "gl" #'link-hint-open-link)