Bug 1082: mem_free_set in abort_preloading
[elinks.git] / src / config / actions-edit.inc
bloba6ded8592d7d82c98472e2117b58482bcdb28018
1 /* Please keep these tables in alphabetical order, and in sync with
2  * the ACT_* constants in kbdbind.h.  */
4 /* These two actions are common over all keymaps: */
5 ACTION_(EDIT, "none", NONE, N__("Do nothing"), 0),
6 ACTION_(EDIT, " *scripting-function*", SCRIPTING_FUNCTION, NULL, 0),
7 ACTION_(EDIT, "auto-complete", AUTO_COMPLETE, N__("Attempt to auto-complete the input"), 0),
8 ACTION_(EDIT, "auto-complete-file", AUTO_COMPLETE_FILE, N__("Attempt to auto-complete a local file"), ACTION_RESTRICT_ANONYMOUS),
9 ACTION_(EDIT, "auto-complete-unambiguous", AUTO_COMPLETE_UNAMBIGUOUS, N__("Attempt to unambiguously auto-complete the input"), 0),
10 ACTION_(EDIT, "backspace", BACKSPACE, N__("Delete character in front of the cursor"), 0),
11 ACTION_(EDIT, "beginning-of-buffer", BEGINNING_OF_BUFFER, N__("Go to the first line of the buffer"), 0),
12 ACTION_(EDIT, "cancel", CANCEL, N__("Cancel current state"), 0),
13 ACTION_(EDIT, "copy-clipboard", COPY_CLIPBOARD, N__("Copy text to clipboard"), 0),
14 ACTION_(EDIT, "cut-clipboard", CUT_CLIPBOARD, N__("Cut text to clipboard"), 0),
15 ACTION_(EDIT, "delete", DELETE, N__("Delete character under cursor"), 0),
16 ACTION_(EDIT, "down", DOWN, N__("Move cursor downwards"), 0),
17 ACTION_(EDIT, "end", END, N__("Go to the end of the page/line"), 0),
18 ACTION_(EDIT, "end-of-buffer", END_OF_BUFFER, N__("Go to the last line of the buffer"), 0),
19 ACTION_(EDIT, "enter", ENTER, N__("Follow the current link"), 0),
20 ACTION_(EDIT, "home", HOME, N__("Go to the start of the page/line"), 0),
21 ACTION_(EDIT, "kill-to-bol", KILL_TO_BOL, N__("Delete to beginning of line"), 0),
22 ACTION_(EDIT, "kill-to-eol", KILL_TO_EOL, N__("Delete to end of line"), 0),
23 ACTION_(EDIT, "kill-word-back", KILL_WORD_BACK, N__("Delete backwards to start of word"), 0),
24 ACTION_(EDIT, "left", LEFT, N__("Move the cursor left"), 0),
25 ACTION_(EDIT, "move-backward-word", MOVE_BACKWARD_WORD, N__("Move cursor before current word"), 0),
26 ACTION_(EDIT, "move-forward-word", MOVE_FORWARD_WORD, N__("Move cursor after current word"), 0),
27 ACTION_(EDIT, "next-item", NEXT_ITEM, N__("Move to the next item"), 0),
28 ACTION_(EDIT, "open-external", OPEN_EXTERNAL, N__("Open in external editor"), ACTION_RESTRICT_ANONYMOUS),
29 ACTION_(EDIT, "paste-clipboard", PASTE_CLIPBOARD, N__("Paste text from the clipboard"), 0),
30 ACTION_(EDIT, "previous-item", PREVIOUS_ITEM, N__("Move to the previous item"), 0),
31 ACTION_(EDIT, "redraw", REDRAW, N__("Redraw the terminal"), 0),
32 ACTION_(EDIT, "right", RIGHT, N__("Move the cursor right"), 0),
33 ACTION_(EDIT, "search-toggle-regex", SEARCH_TOGGLE_REGEX, N__("Toggle regex matching (type-ahead searching)"), 0),
34 ACTION_(EDIT, "up", UP, N__("Move cursor upwards"), 0),