Commit Diff


commit - 4ff12389df3b7bc170914b4c6d720cc58c3a8b20
commit + 05c5cf0c6523f8bcf89d4f7cacbc360358e56fb8
blob - d535286a058e3ccba133933c570bdaaea01fe5aa
blob + dc7261e95b645d1344ea53c52b40114a74bbcec4
--- ChangeLog
+++ ChangeLog
@@ -1,3 +1,9 @@
+2021-07-13  Omar Polo  <op@omarpolo.com>
+
+	* pages.c: advertise B and F instead of C-M-b/C-M-f.
+
+	* defaults.c (load_default_keys): bind B/F to previous/next-page.  I'm bad at choosing keybindings...
+
 2021-07-12  Omar Polo  <op@omarpolo.com>
 
 	* util.c (dispatch_imsg): refactor: all imsgs are completely asynchronous
blob - f81e782d05e5dbef3d4e068c7c27f7fc4a6d9c2d
blob + 74757d2fbb470cdc8663067912cc7cd3da5a2400
--- defaults.c
+++ defaults.c
@@ -224,7 +224,9 @@ load_default_keys(void)
 	global_set_key("C-x t m",	cmd_tab_move);
 	global_set_key("C-x t M",	cmd_tab_move_to);
 
+	global_set_key("B",		cmd_previous_page);
 	global_set_key("C-M-b",		cmd_previous_page);
+	global_set_key("F",		cmd_next_page);
 	global_set_key("C-M-f",		cmd_next_page);
 
 	global_set_key("<f7> a",	cmd_bookmark_page);
blob - b81785ec09e1ae2655b79bba44c17318166ee031
blob + 1b06a7989ebbebbbe12b3a83508927b0419e603a
--- pages.c
+++ pages.c
@@ -62,7 +62,7 @@ const char *about_help =
 	"\n"
 	"=> gemini://gemini.circumlunar.space Project Gemini Homepage\n"
 	"\n"
-	"> Tip: use `C-M-b' and `C-M-f' (or `H' and `L') to navigate "
+	"> Tip: use `B' and `F' (or `H' and `L') to navigate"
 	" forward and backward in the history.\n"
 	"\n"
 	"> Tip: move the cursor over a link and press M-RET (alt-enter) to"
blob - 4b8ea418fd304f0d28f7f25a1051d1e88c9a14fc
blob + 6094d777443a6653c4f61e751dbf4bb4c9409bbd
--- telescope.1
+++ telescope.1
@@ -196,9 +196,9 @@ tab-previous
 tab-move
 .It C-x t M
 tab-move-to
-.It C-M-b
+.It B, C-M-b
 previous-page
-.It C-M-f
+.It F, C-M-f
 next-page
 .It <f7> a
 bookmark-page