Lines Matching refs:f

1121     struct KeyFuncs *f;  in editinit()  local
1130 f = FuncNames; in editinit()
1131 f->name = "backward-char"; in editinit()
1132 f->func = F_CHARBACK; in editinit()
1133 f->desc = CSAVS(3, 1, "Move back a character"); in editinit()
1135 f++; in editinit()
1136 f->name = "backward-delete-char"; in editinit()
1137 f->func = F_DELPREV; in editinit()
1138 f->desc = CSAVS(3, 2, "Delete the character behind cursor"); in editinit()
1140 f++; in editinit()
1141 f->name = "backward-delete-word"; in editinit()
1142 f->func = F_DELWORDPREV; in editinit()
1143 f->desc = CSAVS(3, 3, in editinit()
1146 f++; in editinit()
1147 f->name = "backward-kill-line"; in editinit()
1148 f->func = F_KILLBEG; in editinit()
1149 f->desc = CSAVS(3, 4, in editinit()
1152 f++; in editinit()
1153 f->name = "backward-word"; in editinit()
1154 f->func = F_WORDBACK; in editinit()
1155 f->desc = CSAVS(3, 5, "Move to beginning of current word"); in editinit()
1157 f++; in editinit()
1158 f->name = "beginning-of-line"; in editinit()
1159 f->func = F_TOBEG; in editinit()
1160 f->desc = CSAVS(3, 6, "Move to beginning of line"); in editinit()
1162 f++; in editinit()
1163 f->name = "capitalize-word"; in editinit()
1164 f->func = F_CASECAPITAL; in editinit()
1165 f->desc = CSAVS(3, 7, in editinit()
1168 f++; in editinit()
1169 f->name = "change-case"; in editinit()
1170 f->func = V_CHGCASE; in editinit()
1171 f->desc = CSAVS(3, 8, in editinit()
1174 f++; in editinit()
1175 f->name = "change-till-end-of-line"; in editinit()
1176 f->func = V_CHGTOEND; /* backward compat. */ in editinit()
1177 f->desc = CSAVS(3, 9, "Vi change to end of line"); in editinit()
1179 f++; in editinit()
1180 f->name = "clear-screen"; in editinit()
1181 f->func = F_CLEARDISP; in editinit()
1182 f->desc = CSAVS(3, 10, "Clear screen leaving current line on top"); in editinit()
1184 f++; in editinit()
1185 f->name = "complete-word"; in editinit()
1186 f->func = F_COMPLETE; in editinit()
1187 f->desc = CSAVS(3, 11, "Complete current word"); in editinit()
1189 f++; in editinit()
1190 f->name = "complete-word-fwd"; in editinit()
1191 f->func = F_COMPLETE_FWD; in editinit()
1192 f->desc = CSAVS(3, 12, "Tab forward through files"); in editinit()
1194 f++; in editinit()
1195 f->name = "complete-word-back"; in editinit()
1196 f->func = F_COMPLETE_BACK; in editinit()
1197 f->desc = CSAVS(3, 13, "Tab backward through files"); in editinit()
1199 f++; in editinit()
1200 f->name = "complete-word-raw"; in editinit()
1201 f->func = F_COMPLETE_ALL; in editinit()
1202 f->desc = CSAVS(3, 14, in editinit()
1205 f++; in editinit()
1206 f->name = "copy-prev-word"; in editinit()
1207 f->func = F_COPYPREV; in editinit()
1208 f->desc = CSAVS(3, 15, "Copy current word to cursor"); in editinit()
1210 f++; in editinit()
1211 f->name = "copy-region-as-kill"; in editinit()
1212 f->func = F_COPYREGION; in editinit()
1213 f->desc = CSAVS(3, 16, "Copy area between mark and cursor to cut buffer"); in editinit()
1215 f++; in editinit()
1216 f->name = "dabbrev-expand"; in editinit()
1217 f->func = F_DABBREV_EXPAND; in editinit()
1218 f->desc = CSAVS(3, 17, in editinit()
1221 f++; in editinit()
1222 f->name = "delete-char"; in editinit()
1223 f->func = F_DELNEXT; in editinit()
1224 f->desc = CSAVS(3, 18, "Delete character under cursor"); in editinit()
1226 f++; in editinit()
1227 f->name = "delete-char-or-eof"; in editinit()
1228 f->func = F_DELNEXT_EOF; in editinit()
1229 f->desc = CSAVS(3, 19, in editinit()
1232 f++; in editinit()
1233 f->name = "delete-char-or-list"; in editinit()
1234 f->func = F_DELNEXT_LIST; in editinit()
1235 f->desc = CSAVS(3, 20, in editinit()
1238 f++; in editinit()
1239 f->name = "delete-char-or-list-or-eof"; in editinit()
1240 f->func = F_DELNEXT_LIST_EOF; in editinit()
1241 f->desc = CSAVS(3, 21, in editinit()
1244 f++; in editinit()
1245 f->name = "delete-word"; in editinit()
1246 f->func = F_DELWORDNEXT; in editinit()
1247 f->desc = CSAVS(3, 22, in editinit()
1250 f++; in editinit()
1251 f->name = "digit"; in editinit()
1252 f->func = F_DIGIT; in editinit()
1253 f->desc = CSAVS(3, 23, "Adds to argument if started or enters digit"); in editinit()
1255 f++; in editinit()
1256 f->name = "digit-argument"; in editinit()
1257 f->func = F_ARGDIGIT; in editinit()
1258 f->desc = CSAVS(3, 24, "Digit that starts argument"); in editinit()
1260 f++; in editinit()
1261 f->name = "down-history"; in editinit()
1262 f->func = F_DOWN_HIST; in editinit()
1263 f->desc = CSAVS(3, 25, "Move to next history line"); in editinit()
1265 f++; in editinit()
1266 f->name = "downcase-word"; in editinit()
1267 f->func = F_CASELOWER; in editinit()
1268 f->desc = CSAVS(3, 26, in editinit()
1271 f++; in editinit()
1272 f->name = "end-of-file"; in editinit()
1273 f->func = F_SEND_EOF; in editinit()
1274 f->desc = CSAVS(3, 27, "Indicate end of file"); in editinit()
1276 f++; in editinit()
1277 f->name = "end-of-line"; in editinit()
1278 f->func = F_TOEND; in editinit()
1279 f->desc = CSAVS(3, 28, "Move cursor to end of line"); in editinit()
1281 f++; in editinit()
1282 f->name = "exchange-point-and-mark"; in editinit()
1283 f->func = F_EXCHANGE_MARK; in editinit()
1284 f->desc = CSAVS(3, 29, "Exchange the cursor and mark"); in editinit()
1286 f++; in editinit()
1287 f->name = "expand-glob"; in editinit()
1288 f->func = F_EXPAND_GLOB; in editinit()
1289 f->desc = CSAVS(3, 30, "Expand file name wildcards"); in editinit()
1291 f++; in editinit()
1292 f->name = "expand-history"; in editinit()
1293 f->func = F_EXPAND_HISTORY; in editinit()
1294 f->desc = CSAVS(3, 31, "Expand history escapes"); in editinit()
1296 f++; in editinit()
1297 f->name = "expand-line"; in editinit()
1298 f->func = F_EXPAND; in editinit()
1299 f->desc = CSAVS(3, 32, "Expand the history escapes in a line"); in editinit()
1301 f++; in editinit()
1302 f->name = "expand-variables"; in editinit()
1303 f->func = F_EXPAND_VARS; in editinit()
1304 f->desc = CSAVS(3, 33, "Expand variables"); in editinit()
1306 f++; in editinit()
1307 f->name = "forward-char"; in editinit()
1308 f->func = F_CHARFWD; in editinit()
1309 f->desc = CSAVS(3, 34, "Move forward one character"); in editinit()
1311 f++; in editinit()
1312 f->name = "forward-word"; in editinit()
1313 f->func = F_WORDFWD; in editinit()
1314 f->desc = CSAVS(3, 35, "Move forward to end of current word"); in editinit()
1316 f++; in editinit()
1317 f->name = "gosmacs-transpose-chars"; in editinit()
1318 f->func = F_GCHARSWITCH; in editinit()
1319 f->desc = CSAVS(3, 36, "Exchange the two characters before the cursor"); in editinit()
1321 f++; in editinit()
1322 f->name = "history-search-backward"; in editinit()
1323 f->func = F_UP_SEARCH_HIST; in editinit()
1324 f->desc = CSAVS(3, 37, in editinit()
1327 f++; in editinit()
1328 f->name = "history-search-forward"; in editinit()
1329 f->func = F_DOWN_SEARCH_HIST; in editinit()
1330 f->desc = CSAVS(3, 38, in editinit()
1333 f++; in editinit()
1334 f->name = "insert-last-word"; in editinit()
1335 f->func = F_LAST_ITEM; in editinit()
1336 f->desc = CSAVS(3, 39, "Insert last item of previous command"); in editinit()
1338 f++; in editinit()
1339 f->name = "i-search-fwd"; in editinit()
1340 f->func = F_INC_FWD; in editinit()
1341 f->desc = CSAVS(3, 40, "Incremental search forward"); in editinit()
1343 f++; in editinit()
1344 f->name = "i-search-back"; in editinit()
1345 f->func = F_INC_BACK; in editinit()
1346 f->desc = CSAVS(3, 41, "Incremental search backward"); in editinit()
1348 f++; in editinit()
1349 f->name = "keyboard-quit"; in editinit()
1350 f->func = F_STARTOVER; in editinit()
1351 f->desc = CSAVS(3, 42, "Clear line"); in editinit()
1353 f++; in editinit()
1354 f->name = "kill-line"; in editinit()
1355 f->func = F_KILLEND; in editinit()
1356 f->desc = CSAVS(3, 43, "Cut to end of line and save in cut buffer"); in editinit()
1358 f++; in editinit()
1359 f->name = "kill-region"; in editinit()
1360 f->func = F_KILLREGION; in editinit()
1361 f->desc = CSAVS(3, 44, in editinit()
1364 f++; in editinit()
1365 f->name = "kill-whole-line"; in editinit()
1366 f->func = F_KILLALL; in editinit()
1367 f->desc = CSAVS(3, 45, "Cut the entire line and save in cut buffer"); in editinit()
1369 f++; in editinit()
1370 f->name = "list-choices"; in editinit()
1371 f->func = F_LIST_CHOICES; in editinit()
1372 f->desc = CSAVS(3, 46, "List choices for completion"); in editinit()
1374 f++; in editinit()
1375 f->name = "list-choices-raw"; in editinit()
1376 f->func = F_LIST_ALL; in editinit()
1377 f->desc = CSAVS(3, 47, in editinit()
1380 f++; in editinit()
1381 f->name = "list-glob"; in editinit()
1382 f->func = F_LIST_GLOB; in editinit()
1383 f->desc = CSAVS(3, 48, "List file name wildcard matches"); in editinit()
1385 f++; in editinit()
1386 f->name = "list-or-eof"; in editinit()
1387 f->func = F_LIST_EOF; in editinit()
1388 f->desc = CSAVS(3, 49, in editinit()
1391 f++; in editinit()
1392 f->name = "load-average"; in editinit()
1393 f->func = F_LOAD_AVERAGE; in editinit()
1394 f->desc = CSAVS(3, 50, "Display load average and current process status"); in editinit()
1396 f++; in editinit()
1397 f->name = "magic-space"; in editinit()
1398 f->func = F_MAGIC_SPACE; in editinit()
1399 f->desc = CSAVS(3, 51, "Expand history escapes and insert a space"); in editinit()
1401 f++; in editinit()
1402 f->name = "newline"; in editinit()
1403 f->func = F_NEWLINE; in editinit()
1404 f->desc = CSAVS(3, 52, "Execute command"); in editinit()
1406 f++; in editinit()
1407 f->name = "newline-and-hold"; in editinit()
1408 f->func = F_NEWLINE_HOLD; in editinit()
1409 f->desc = CSAVS(3, 122, "Execute command and keep current line"); in editinit()
1411 f++; in editinit()
1412 f->name = "newline-and-down-history"; in editinit()
1413 f->func = F_NEWLINE_DOWN_HIST; in editinit()
1414 f->desc = CSAVS(3, 123, "Execute command and move to next history line"); in editinit()
1416 f++; in editinit()
1417 f->name = "normalize-path"; in editinit()
1418 f->func = F_PATH_NORM; in editinit()
1419 f->desc = CSAVS(3, 53, in editinit()
1422 f++; in editinit()
1423 f->name = "normalize-command"; in editinit()
1424 f->func = F_COMMAND_NORM; in editinit()
1425 f->desc = CSAVS(3, 54, in editinit()
1428 f++; in editinit()
1429 f->name = "overwrite-mode"; in editinit()
1430 f->func = F_INSOVR; in editinit()
1431 f->desc = CSAVS(3, 55, in editinit()
1434 f++; in editinit()
1435 f->name = "prefix-meta"; in editinit()
1436 f->func = F_METANEXT; in editinit()
1437 f->desc = CSAVS(3, 56, "Add 8th bit to next character typed"); in editinit()
1439 f++; in editinit()
1440 f->name = "quoted-insert"; in editinit()
1441 f->func = F_QUOTE; in editinit()
1442 f->desc = CSAVS(3, 57, "Add the next character typed to the line verbatim"); in editinit()
1444 f++; in editinit()
1445 f->name = "redisplay"; in editinit()
1446 f->func = F_REDISP; in editinit()
1447 f->desc = CSAVS(3, 58, "Redisplay everything"); in editinit()
1449 f++; in editinit()
1450 f->name = "run-fg-editor"; in editinit()
1451 f->func = F_RUN_FG_EDITOR; in editinit()
1452 f->desc = CSAVS(3, 59, "Restart stopped editor"); in editinit()
1454 f++; in editinit()
1455 f->name = "run-help"; in editinit()
1456 f->func = F_HELPME; in editinit()
1457 f->desc = CSAVS(3, 60, "Look for help on current command"); in editinit()
1459 f++; in editinit()
1460 f->name = "self-insert-command"; in editinit()
1461 f->func = F_INSERT; in editinit()
1462 f->desc = CSAVS(3, 61, "This character is added to the line"); in editinit()
1464 f++; in editinit()
1465 f->name = "sequence-lead-in"; in editinit()
1466 f->func = F_XKEY; in editinit()
1467 f->desc = CSAVS(3, 62, in editinit()
1470 f++; in editinit()
1471 f->name = "set-mark-command"; in editinit()
1472 f->func = F_SET_MARK; in editinit()
1473 f->desc = CSAVS(3, 63, "Set the mark at cursor"); in editinit()
1475 f++; in editinit()
1476 f->name = "spell-word"; in editinit()
1477 f->func = F_CORRECT; in editinit()
1478 f->desc = CSAVS(3, 64, "Correct the spelling of current word"); in editinit()
1480 f++; in editinit()
1481 f->name = "spell-line"; in editinit()
1482 f->func = F_CORRECT_L; in editinit()
1483 f->desc = CSAVS(3, 65, "Correct the spelling of entire line"); in editinit()
1485 f++; in editinit()
1486 f->name = "stuff-char"; in editinit()
1487 f->func = F_STUFF_CHAR; in editinit()
1488 f->desc = CSAVS(3, 66, "Send character to tty in cooked mode"); in editinit()
1490 f++; in editinit()
1491 f->name = "toggle-literal-history"; in editinit()
1492 f->func = F_TOGGLE_HIST; in editinit()
1493 f->desc = CSAVS(3, 67, in editinit()
1496 f++; in editinit()
1497 f->name = "transpose-chars"; in editinit()
1498 f->func = F_CHARSWITCH; in editinit()
1499 f->desc = CSAVS(3, 68, in editinit()
1502 f++; in editinit()
1503 f->name = "transpose-gosling"; in editinit()
1504 f->func = F_GCHARSWITCH; in editinit()
1505 f->desc = CSAVS(3, 69, "Exchange the two characters before the cursor"); in editinit()
1507 f++; in editinit()
1508 f->name = "tty-dsusp"; in editinit()
1509 f->func = F_TTY_DSUSP; in editinit()
1510 f->desc = CSAVS(3, 70, "Tty delayed suspend character"); in editinit()
1512 f++; in editinit()
1513 f->name = "tty-flush-output"; in editinit()
1514 f->func = F_TTY_FLUSHO; in editinit()
1515 f->desc = CSAVS(3, 71, "Tty flush output character"); in editinit()
1517 f++; in editinit()
1518 f->name = "tty-sigintr"; in editinit()
1519 f->func = F_TTY_INT; in editinit()
1520 f->desc = CSAVS(3, 72, "Tty interrupt character"); in editinit()
1522 f++; in editinit()
1523 f->name = "tty-sigquit"; in editinit()
1524 f->func = F_TTY_QUIT; in editinit()
1525 f->desc = CSAVS(3, 73, "Tty quit character"); in editinit()
1527 f++; in editinit()
1528 f->name = "tty-sigtsusp"; in editinit()
1529 f->func = F_TTY_TSUSP; in editinit()
1530 f->desc = CSAVS(3, 74, "Tty suspend character"); in editinit()
1532 f++; in editinit()
1533 f->name = "tty-start-output"; in editinit()
1534 f->func = F_TTY_STARTO; in editinit()
1535 f->desc = CSAVS(3, 75, "Tty allow output character"); in editinit()
1537 f++; in editinit()
1538 f->name = "tty-stop-output"; in editinit()
1539 f->func = F_TTY_STOPO; in editinit()
1540 f->desc = CSAVS(3, 76, "Tty disallow output character"); in editinit()
1542 f++; in editinit()
1543 f->name = "undefined-key"; in editinit()
1544 f->func = F_UNASSIGNED; in editinit()
1545 f->desc = CSAVS(3, 77, "Indicates unbound character"); in editinit()
1547 f++; in editinit()
1548 f->name = "universal-argument"; in editinit()
1549 f->func = F_ARGFOUR; in editinit()
1550 f->desc = CSAVS(3, 78, "Emacs universal argument (argument times 4)"); in editinit()
1552 f++; in editinit()
1553 f->name = "up-history"; in editinit()
1554 f->func = F_UP_HIST; in editinit()
1555 f->desc = CSAVS(3, 79, "Move to previous history line"); in editinit()
1557 f++; in editinit()
1558 f->name = "upcase-word"; in editinit()
1559 f->func = F_CASEUPPER; in editinit()
1560 f->desc = CSAVS(3, 80, in editinit()
1563 f++; in editinit()
1564 f->name = "vi-beginning-of-next-word"; in editinit()
1565 f->func = V_WORDBEGNEXT; in editinit()
1566 f->desc = CSAVS(3, 81, "Vi goto the beginning of next word"); in editinit()
1568 f++; in editinit()
1569 f->name = "vi-add"; in editinit()
1570 f->func = V_ADD; in editinit()
1571 f->desc = CSAVS(3, 82, "Vi enter insert mode after the cursor"); in editinit()
1573 f++; in editinit()
1574 f->name = "vi-add-at-eol"; in editinit()
1575 f->func = V_ADDEND; in editinit()
1576 f->desc = CSAVS(3, 83, "Vi enter insert mode at end of line"); in editinit()
1578 f++; in editinit()
1579 f->name = "vi-chg-case"; in editinit()
1580 f->func = V_CHGCASE; in editinit()
1581 f->desc = CSAVS(3, 84, in editinit()
1584 f++; in editinit()
1585 f->name = "vi-chg-meta"; in editinit()
1586 f->func = V_CHGMETA; in editinit()
1587 f->desc = CSAVS(3, 85, "Vi change prefix command"); in editinit()
1589 f++; in editinit()
1590 f->name = "vi-chg-to-eol"; in editinit()
1591 f->func = V_CHGTOEND; in editinit()
1592 f->desc = CSAVS(3, 86, "Vi change to end of line"); in editinit()
1594 f++; in editinit()
1595 f->name = "vi-cmd-mode"; in editinit()
1596 f->func = V_CMD_MODE; in editinit()
1597 f->desc = CSAVS(3, 87, in editinit()
1600 f++; in editinit()
1601 f->name = "vi-cmd-mode-complete"; in editinit()
1602 f->func = V_CM_COMPLETE; in editinit()
1603 f->desc = CSAVS(3, 88, "Vi command mode complete current word"); in editinit()
1605 f++; in editinit()
1606 f->name = "vi-delprev"; in editinit()
1607 f->func = V_DELPREV; in editinit()
1608 f->desc = CSAVS(3, 89, "Vi move to previous character (backspace)"); in editinit()
1610 f++; in editinit()
1611 f->name = "vi-delmeta"; in editinit()
1612 f->func = V_DELMETA; in editinit()
1613 f->desc = CSAVS(3, 90, "Vi delete prefix command"); in editinit()
1615 f++; in editinit()
1616 f->name = "vi-endword"; in editinit()
1617 f->func = V_ENDWORD; in editinit()
1618 f->desc = CSAVS(3, 91, in editinit()
1621 f++; in editinit()
1622 f->name = "vi-eword"; in editinit()
1623 f->func = V_EWORD; in editinit()
1624 f->desc = CSAVS(3, 92, "Vi move to the end of the current word"); in editinit()
1626 f++; in editinit()
1627 f->name = "vi-char-back"; in editinit()
1628 f->func = V_CHAR_BACK; in editinit()
1629 f->desc = CSAVS(3, 93, "Vi move to the character specified backward"); in editinit()
1631 f++; in editinit()
1632 f->name = "vi-char-fwd"; in editinit()
1633 f->func = V_CHAR_FWD; in editinit()
1634 f->desc = CSAVS(3, 94, "Vi move to the character specified forward"); in editinit()
1636 f++; in editinit()
1637 f->name = "vi-charto-back"; in editinit()
1638 f->func = V_CHARTO_BACK; in editinit()
1639 f->desc = CSAVS(3, 95, "Vi move up to the character specified backward"); in editinit()
1641 f++; in editinit()
1642 f->name = "vi-charto-fwd"; in editinit()
1643 f->func = V_CHARTO_FWD; in editinit()
1644 f->desc = CSAVS(3, 96, "Vi move up to the character specified forward"); in editinit()
1646 f++; in editinit()
1647 f->name = "vi-insert"; in editinit()
1648 f->func = V_INSERT; in editinit()
1649 f->desc = CSAVS(3, 97, "Enter vi insert mode"); in editinit()
1651 f++; in editinit()
1652 f->name = "vi-insert-at-bol"; in editinit()
1653 f->func = V_INSBEG; in editinit()
1654 f->desc = CSAVS(3, 98, "Enter vi insert mode at beginning of line"); in editinit()
1656 f++; in editinit()
1657 f->name = "vi-repeat-char-fwd"; in editinit()
1658 f->func = V_RCHAR_FWD; in editinit()
1659 f->desc = CSAVS(3, 99, in editinit()
1662 f++; in editinit()
1663 f->name = "vi-repeat-char-back"; in editinit()
1664 f->func = V_RCHAR_BACK; in editinit()
1665 f->desc = CSAVS(3, 100, in editinit()
1668 f++; in editinit()
1669 f->name = "vi-repeat-search-fwd"; in editinit()
1670 f->func = V_RSRCH_FWD; in editinit()
1671 f->desc = CSAVS(3, 101, in editinit()
1674 f++; in editinit()
1675 f->name = "vi-repeat-search-back"; in editinit()
1676 f->func = V_RSRCH_BACK; in editinit()
1677 f->desc = CSAVS(3, 102, in editinit()
1680 f++; in editinit()
1681 f->name = "vi-replace-char"; in editinit()
1682 f->func = V_REPLONE; in editinit()
1683 f->desc = CSAVS(3, 103, in editinit()
1686 f++; in editinit()
1687 f->name = "vi-replace-mode"; in editinit()
1688 f->func = V_REPLMODE; in editinit()
1689 f->desc = CSAVS(3, 104, "Vi replace mode"); in editinit()
1691 f++; in editinit()
1692 f->name = "vi-search-back"; in editinit()
1693 f->func = V_USH_META; in editinit()
1694 f->desc = CSAVS(3, 105, "Vi search history backward"); in editinit()
1696 f++; in editinit()
1697 f->name = "vi-search-fwd"; in editinit()
1698 f->func = V_DSH_META; in editinit()
1699 f->desc = CSAVS(3, 106, "Vi search history forward"); in editinit()
1701 f++; in editinit()
1702 f->name = "vi-substitute-char"; in editinit()
1703 f->func = V_SUBSTCHAR; in editinit()
1704 f->desc = CSAVS(3, 107, in editinit()
1707 f++; in editinit()
1708 f->name = "vi-substitute-line"; in editinit()
1709 f->func = V_SUBSTLINE; in editinit()
1710 f->desc = CSAVS(3, 108, "Vi replace entire line"); in editinit()
1712 f++; in editinit()
1713 f->name = "vi-word-back"; in editinit()
1714 f->func = V_WORDBACK; in editinit()
1715 f->desc = CSAVS(3, 109, "Vi move to the previous word"); in editinit()
1717 f++; in editinit()
1718 f->name = "vi-word-fwd"; in editinit()
1719 f->func = V_WORDFWD; in editinit()
1720 f->desc = CSAVS(3, 110, "Vi move to the next word"); in editinit()
1722 f++; in editinit()
1723 f->name = "vi-undo"; in editinit()
1724 f->func = V_UNDO; in editinit()
1725 f->desc = CSAVS(3, 111, "Vi undo last change"); in editinit()
1727 f++; in editinit()
1728 f->name = "vi-zero"; in editinit()
1729 f->func = V_ZERO; in editinit()
1730 f->desc = CSAVS(3, 112, "Vi goto the beginning of line"); in editinit()
1732 f++; in editinit()
1733 f->name = "which-command"; in editinit()
1734 f->func = F_WHICH; in editinit()
1735 f->desc = CSAVS(3, 113, "Perform which of current command"); in editinit()
1737 f++; in editinit()
1738 f->name = "yank"; in editinit()
1739 f->func = F_YANK_KILL; in editinit()
1740 f->desc = CSAVS(3, 114, "Paste cut buffer at cursor position"); in editinit()
1742 f++; in editinit()
1743 f->name = "yank-pop"; in editinit()
1744 f->func = F_YANK_POP; in editinit()
1745 f->desc = CSAVS(3, 115, in editinit()
1748 f++; in editinit()
1749 f->name = "e_dosify_next"; in editinit()
1750 f->func = F_DOSIFY_NEXT; in editinit()
1751 f->desc = CSAVS(3, 118, in editinit()
1754 f++; in editinit()
1755 f->name = "e_dosify_prev"; in editinit()
1756 f->func = F_DOSIFY_PREV; in editinit()
1757 f->desc = CSAVS(3, 119, in editinit()
1760 f++; in editinit()
1761 f->name = "e_page_up"; in editinit()
1762 f->func = F_PAGE_UP; in editinit()
1763 f->desc = CSAVS(3, 120, "(WIN32 only) Page visible console window up"); in editinit()
1765 f++; in editinit()
1766 f->name = "e_page_down"; in editinit()
1767 f->func = F_PAGE_DOWN; in editinit()
1768 f->desc = CSAVS(3, 121, "(WIN32 only) Page visible console window down"); in editinit()
1770 f++; in editinit()
1771 f->name = NULL; in editinit()
1772 f->func = 0; in editinit()
1773 f->desc = NULL; in editinit()
1775 f++; in editinit()
1776 if (f - FuncNames != F_NUM_FUNCNAMES) in editinit()