Blame


1 46f6e974 2021-05-17 op struct buffer;
2 09312eb3 2021-05-14 op
3 b3be07ea 2021-07-18 op #define CMD(fnname, descr) void fnname(struct buffer *)
4 b3be07ea 2021-07-18 op #define DEFALIAS(s, d) /* nothing */
5 09312eb3 2021-05-14 op
6 b3be07ea 2021-07-18 op CMD(cmd_backward_char, "Move point one character backward.");
7 b3be07ea 2021-07-18 op CMD(cmd_backward_paragraph, "Move point on paragraph backward.");
8 b3be07ea 2021-07-18 op CMD(cmd_beginning_of_buffer, "Move point to the beginning of the buffer.");
9 b3be07ea 2021-07-18 op CMD(cmd_bookmark_page, "Save a page in the bookmark file.");
10 eeebca22 2022-01-11 op CMD(cmd_cache_info, "Show cache stats.");
11 b3be07ea 2021-07-18 op CMD(cmd_clear_minibuf, "Clear the echo area.");
12 b3be07ea 2021-07-18 op CMD(cmd_dec_fill_column, "Decrement fill-column by two.");
13 b3be07ea 2021-07-18 op CMD(cmd_end_of_buffer, "Move the point to the end of the buffer.");
14 b3be07ea 2021-07-18 op CMD(cmd_execute_extended_command, "Execute an internal command.");
15 b3be07ea 2021-07-18 op CMD(cmd_forward_char, "Move point one character forward.");
16 b3be07ea 2021-07-18 op CMD(cmd_forward_paragraph, "Move point one paragraph forward.");
17 b3be07ea 2021-07-18 op CMD(cmd_inc_fill_column, "Increment fill-column by two");
18 b3be07ea 2021-07-18 op CMD(cmd_insert_current_candidate, "Copy the current selection text as minibuffer input.");
19 b3be07ea 2021-07-18 op CMD(cmd_kill_telescope, "Quit Telescope.");
20 b3be07ea 2021-07-18 op CMD(cmd_link_select, "Select and visit a link using the minibuffer.");
21 b3be07ea 2021-07-18 op CMD(cmd_list_bookmarks, "Load the bookmarks page.");
22 b3be07ea 2021-07-18 op CMD(cmd_load_current_url, "Edit the current URL.");
23 b3be07ea 2021-07-18 op CMD(cmd_load_url, "Prompt for an URL.");
24 b3be07ea 2021-07-18 op CMD(cmd_mini_abort, "Abort the current minibuffer action.");
25 b3be07ea 2021-07-18 op CMD(cmd_mini_complete_and_exit, "Complete the current minibuffer action.");
26 b3be07ea 2021-07-18 op CMD(cmd_mini_delete_backward_char, "Delete the character before the point.");
27 b3be07ea 2021-07-18 op CMD(cmd_mini_delete_char, "Delete the character after the point.");
28 b3be07ea 2021-07-18 op CMD(cmd_mini_goto_beginning, "Select the first completion.");
29 b3be07ea 2021-07-18 op CMD(cmd_mini_goto_end, "Select the last completion.");
30 b3be07ea 2021-07-18 op CMD(cmd_mini_kill_line, "Delete from point until the end of the line.");
31 b3be07ea 2021-07-18 op CMD(cmd_mini_next_history_element, "Load the next history element.");
32 b3be07ea 2021-07-18 op CMD(cmd_mini_previous_history_element, "Load the previous history element.");
33 167131d5 2021-07-24 op CMD(cmd_mini_scroll_down, "Scroll completions up by one visual page");
34 167131d5 2021-07-24 op CMD(cmd_mini_scroll_up, "Scroll completions up by one visual page");
35 b3be07ea 2021-07-18 op CMD(cmd_move_beginning_of_line, "Move point at the beginning of the current visual line.");
36 b3be07ea 2021-07-18 op CMD(cmd_move_end_of_line, "Move point at the end of the current visual line.");
37 b3be07ea 2021-07-18 op CMD(cmd_next_button, "Move point to the next link.");
38 b3be07ea 2021-07-18 op CMD(cmd_next_completion, "Select the next completion.");
39 b3be07ea 2021-07-18 op CMD(cmd_next_heading, "Move point to the next heading.");
40 b3be07ea 2021-07-18 op CMD(cmd_next_line, "Move point to the next visual line.");
41 b3be07ea 2021-07-18 op CMD(cmd_next_page, "Go forward in the page history.");
42 b3be07ea 2021-07-18 op CMD(cmd_olivetti_mode, "Toggle olivetti-mode.");
43 65340174 2021-07-21 op CMD(cmd_other_window, "Select the other window.");
44 b3be07ea 2021-07-18 op CMD(cmd_previous_button, "Move point to the previous link.");
45 b3be07ea 2021-07-18 op CMD(cmd_previous_completion, "Select the previous completion.");
46 b3be07ea 2021-07-18 op CMD(cmd_previous_heading, "Move point to the previous heading.");
47 b3be07ea 2021-07-18 op CMD(cmd_previous_line, "Move point to the previous visual line.");
48 b3be07ea 2021-07-18 op CMD(cmd_previous_page, "Go backward in the page history.");
49 b3be07ea 2021-07-18 op CMD(cmd_push_button, "Follow link at point or toggle pre-visibility.");
50 b3be07ea 2021-07-18 op CMD(cmd_push_button_new_tab, "Follow link at point in a new tab.n");
51 b3be07ea 2021-07-18 op CMD(cmd_redraw, "Redraw the screen.");
52 b3be07ea 2021-07-18 op CMD(cmd_reload_page, "Reload the current page.");
53 b3be07ea 2021-07-18 op CMD(cmd_scroll_down, "Scroll down by one visual page");
54 b3be07ea 2021-07-18 op CMD(cmd_scroll_line_down, "Scroll down by one line");
55 b3be07ea 2021-07-18 op CMD(cmd_scroll_line_up, "Scroll up by one line.");
56 b3be07ea 2021-07-18 op CMD(cmd_scroll_up, "Scroll up by one visual page");
57 b3be07ea 2021-07-18 op CMD(cmd_suspend_telescope, "Suspend the current Telescope session.");
58 b3be07ea 2021-07-18 op CMD(cmd_swiper, "Jump to a line using the minibuffer.");
59 b3be07ea 2021-07-18 op CMD(cmd_tab_close, "Close the current tab.");
60 b3be07ea 2021-07-18 op CMD(cmd_tab_close_other, "Close all tabs but the current one.");
61 6c74799d 2022-01-05 op CMD(cmd_tab_undo_close, "Reopen last closed tab.");
62 b3be07ea 2021-07-18 op CMD(cmd_tab_move, "Move the current tab to the right.");
63 b3be07ea 2021-07-18 op CMD(cmd_tab_move_to, "Move the current tab to the left.");
64 b3be07ea 2021-07-18 op CMD(cmd_tab_new, "Open a new tab.");
65 b3be07ea 2021-07-18 op CMD(cmd_tab_next, "Focus next tab.");
66 b3be07ea 2021-07-18 op CMD(cmd_tab_previous, "Focus previous tab.");
67 b3be07ea 2021-07-18 op CMD(cmd_tab_select, "Switch to a tab using the minibuffer.");
68 b3be07ea 2021-07-18 op CMD(cmd_toc, "Jump to a heading using the minibuffer.");
69 3b5f459e 2021-11-05 op CMD(cmd_toggle_downloads, "Toggle the downloads side window.");
70 b3be07ea 2021-07-18 op CMD(cmd_toggle_help, "Toggle side window with help.");
71 b3be07ea 2021-07-18 op CMD(cmd_toggle_pre_wrap, "Toggle the wrapping of preformatted blocks.");
72 61251035 2021-06-26 op
73 645dd299 2021-07-15 op DEFALIAS(q, cmd_kill_telescope)
74 645dd299 2021-07-15 op DEFALIAS(tabn, cmd_tab_next)
75 645dd299 2021-07-15 op DEFALIAS(tabnew, cmd_tab_new)
76 645dd299 2021-07-15 op DEFALIAS(tabp, cmd_tab_previous)
77 645dd299 2021-07-15 op DEFALIAS(wq, cmd_kill_telescope)