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