Commit Diff


commit - 6c04e8b68a71da73575f54212a182d86a3ddb3e8
commit + 6387519587c85a8c3c24c2f32a934e000185f5d7
blob - 0c110eb9fa4981e91571798dbea489a79af7fd0b
blob + 19d5951dec4440f1e915cb266790151e58785a2c
--- telescope.1
+++ telescope.1
@@ -174,7 +174,7 @@ Tab
 .It <f7> a
 .Ic bookmark-page
 .It <f7> <f7>
-.Ic goto-bookmarks
+.Ic list-bookmarks
 .El
 .Ss Xr vi 1 Ns -like keys
 .Bl -tag -width xxxxxxxxxxxx -offset indent -compact
@@ -336,7 +336,7 @@ Move point to the previous (visual) line.
 .It Ic bookmark-page
 Add a link to the bookmark file.
 It preloads the minibuffer with the current URL.
-.It Ic goto-bookmarks
+.It Ic list-bookmarks
 Load the bookmarks page.
 .El
 .Ss Tab-related commands
blob - f4f28f59da3378246dd72eaf176086080d097b62
blob + 8cda7465482fded7bad12db8c9e33dbc703cce22
--- ui.c
+++ ui.c
@@ -91,7 +91,7 @@ CMD(cmd_tab_move_to);
 CMD(cmd_load_url);
 CMD(cmd_load_current_url);
 CMD(cmd_bookmark_page);
-CMD(cmd_goto_bookmarks);
+CMD(cmd_list_bookmarks);
 CMD(cmd_toggle_help);
 
 CMD(cmd_mini_delete_char);
@@ -293,7 +293,7 @@ load_default_keys(void)
 	global_set_key("C-M-f",		cmd_next_page);
 
 	global_set_key("<f7> a",	cmd_bookmark_page);
-	global_set_key("<f7> <f7>",	cmd_goto_bookmarks);
+	global_set_key("<f7> <f7>",	cmd_list_bookmarks);
 
 	/* vi/vi-like */
 	global_set_key("k",		cmd_previous_line);
@@ -848,7 +848,7 @@ cmd_bookmark_page(struct window *window)
 }
 
 static void
-cmd_goto_bookmarks(struct window *window)
+cmd_list_bookmarks(struct window *window)
 {
 	load_url_in_tab(current_tab(), "about:bookmarks");
 }