1/* Please keep these tables in alphabetical order, and in sync with
2 * the ACT_* constants in kbdbind.h.  */
3
4/* These two actions are common over all keymaps: */
5ACTION_(MENU, "none", NONE, N__("Do nothing"), 0),
6ACTION_(MENU, " *scripting-function*", SCRIPTING_FUNCTION, NULL, 0),
7
8ACTION_(MENU, "cancel", CANCEL, N__("Cancel current state"), 0),
9ACTION_(MENU, "delete", DELETE, N__("Delete character under cursor"), 0),
10ACTION_(MENU, "down", DOWN, N__("Move cursor downwards"), 0),
11ACTION_(MENU, "end", END, N__("Go to the end of the page/line"), 0),
12ACTION_(MENU, "enter", ENTER, N__("Follow the current link"), 0),
13ACTION_(MENU, "expand", EXPAND, N__("Expand item"), 0),
14ACTION_(MENU, "home", HOME, N__("Go to the start of the page/line"), 0),
15ACTION_(MENU, "left", LEFT, N__("Move the cursor left"), 0),
16ACTION_(MENU, "mark-item", MARK_ITEM, N__("Mark item"), 0),
17ACTION_(MENU, "next-item", NEXT_ITEM, N__("Move to the next item"), 0),
18ACTION_(MENU, "page-down", PAGE_DOWN, N__("Move downwards by a page"), 0),
19ACTION_(MENU, "page-up", PAGE_UP, N__("Move upwards by a page"), 0),
20ACTION_(MENU, "previous-item", PREVIOUS_ITEM, N__("Move to the previous item"), 0),
21ACTION_(MENU, "redraw", REDRAW, N__("Redraw the terminal"), 0),
22ACTION_(MENU, "right", RIGHT, N__("Move the cursor right"), 0),
23ACTION_(MENU, "search", SEARCH, N__("Search for a text pattern"), 0),
24ACTION_(MENU, "select", SELECT, N__("Select current highlighted item"), 0),
25ACTION_(MENU, "unexpand", UNEXPAND, N__("Collapse item"), 0),
26ACTION_(MENU, "up", UP, N__("Move cursor upwards"), 0),
27