Blame


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