1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699
|
.\" Title: elinkskeys
.\" Author:
.\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
.\" Date: 03/29/2009
.\" Manual: ELinks keybindings
.\" Source: ELinks 0.13.GIT
.\"
.TH "ELINKSKEYS" "5" "03/29/2009" "ELinks 0\&.13\&.GIT" "ELinks keybindings"
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.SH "NAME"
elinkskeys \- keybindings for ELinks
.SH "SYNOPSIS"
Information on how to configure keybinding and overview of the default keybindings\&.
.sp
.SH "DESCRIPTION"
Key binding for elinks should be placed in the file ~/\&.elinks/elinks\&.conf\&. Note that any information regarding their format/structure may not be up\-to\-date\&. If you will discover that, please feed us with a patch\&.
.sp
Key binding statements are of the form:
.sp
.sp
.RS 4
.nf
bind <keymap> <keystroke> = <action>
.fi
.RE
where:
.PP
<keymap>
.RS 4
is
\fImain\fR,
\fIedit\fR, or
\fImenu\fR\&. The main keymap is used for general browsing\&. The edit keymap is used for editing text fields\&. The menu keymap is used for navigating menus\&.
.RE
.PP
<keystroke>
.RS 4
is a case sensitive key, which you can prefix with
\fICtrl\-\fR,
\fIAlt\-\fR, or both\&.
\fICtrl\-\fR
must be followed by an uppercase key\&. See below for a list of valid keys\&.
.RE
.PP
<action>
.RS 4
is what the key should do\&. The actions available are dependent on the keymap, and are listed separately below\&.
.RE
All words/strings may all be quoted "like so"\&. Backslashes are escape characters, even if not between quotes\&. Lines beginning with a hash character (#) are comments\&.
.sp
Keys can be unbound just by binding them to the special \fInone\fR action\&. It may be of use if you accidentally type a key often\&.
.sp
.SH "EXAMPLE BINDINGS"
Some sample keybindings:
.sp
.sp
.RS 4
.nf
bind "main" "v" = "view\-image"
bind "main" "l" = "jump\-to\-link"
bind "main" "L" = "link\-menu"
bind "main" "F10" = "file\-menu"
bind "main" "F9" = "menu"
bind "main" "Escape" = "menu"
bind "edit" "Ctrl\-R" = "auto\-complete\-unambiguous"
bind "edit" "Ctrl\-W" = "auto\-complete"
bind "edit" "Ctrl\-K" = "kill\-to\-eol"
bind "menu" "Ctrl\-B" = "page\-up"
bind "menu" "PageUp" = "page\-up"
bind "menu" "Ctrl\-F" = "page\-down"
bind "menu" "PageDown" = "page\-down"
# ELinks with Lua support
bind "main" "," = "lua\-console"
.fi
.RE
.SH "KEYS"
Valid keys are: alphanumeric characters, punctuation, \fIEnter\fR, \fIBackspace\fR, \fITab\fR, \fIEscape\fR, \fILeft\fR, \fIRight\fR, \fIUp\fR, \fIDown\fR, \fIInsert\fR, \fIDelete\fR, \fIHome\fR, \fIEnd\fR, \fIPageUp\fR, \fIPageDown\fR, \fIF1\fR to \fIF12\fR\&.
.sp
Some keys will need to be quoted or escaped\&. For example, space can be written as " " (quote space quote), and the quote itself as \e" (backslash quote)\&. Backslash can be written as \e\e (double backslash)\&.
.sp
.SH "KEYMAP ACTIONS"
.SS "MAIN ACTIONS"
.PP
abort\-connection
.RS 4
Abort connection\&.
.RE
.PP
add\-bookmark
.RS 4
Add a new bookmark\&.
.RE
.PP
add\-bookmark\-link
.RS 4
Add a new bookmark using current link\&.
.RE
.PP
add\-bookmark\-tabs
.RS 4
Bookmark all open tabs\&.
.RE
.PP
auth\-manager
.RS 4
Open authentication manager\&.
.RE
.PP
backspace\-prefix
.RS 4
Backspace the last entered digit of the current prefix\&.
.RE
.PP
bookmark\-manager
.RS 4
Open bookmark manager\&.
.RE
.PP
cache\-manager
.RS 4
Open cache manager\&.
.RE
.PP
cache\-minimize
.RS 4
Free unused cache entries\&.
.RE
.PP
cookie\-manager
.RS 4
Open cookie manager\&.
.RE
.PP
cookies\-load
.RS 4
Reload cookies file\&.
.RE
.PP
copy\-clipboard
.RS 4
Copy text to clipboard\&.
.RE
.PP
document\-info
.RS 4
Show information about the current page\&.
.RE
.PP
download\-manager
.RS 4
Open download manager\&.
.RE
.PP
exmode
.RS 4
Enter ex\-mode (command line)\&.
.RE
.PP
file\-menu
.RS 4
Open the File menu\&.
.RE
.PP
find\-next
.RS 4
Find the next occurrence of the current search text\&.
.RE
.PP
find\-next\-back
.RS 4
Find the previous occurrence of the current search text\&.
.RE
.PP
forget\-credentials
.RS 4
Forget authentication credentials\&.
.RE
.PP
formhist\-manager
.RS 4
Open form history manager\&.
.RE
.PP
frame\-external\-command
.RS 4
Pass URI of current frame to external command\&.
.RE
.PP
frame\-maximize
.RS 4
Maximize the current frame\&.
.RE
.PP
frame\-next
.RS 4
Move to the next frame\&.
.RE
.PP
frame\-prev
.RS 4
Move to the previous frame\&.
.RE
.PP
goto\-url
.RS 4
Open "Go to URL" dialog box\&.
.RE
.PP
goto\-url\-current
.RS 4
Open "Go to URL" dialog box containing the current URL\&.
.RE
.PP
goto\-url\-current\-link
.RS 4
Open "Go to URL" dialog box containing the current link URL\&.
.RE
.PP
goto\-url\-home
.RS 4
Go to the homepage\&.
.RE
.PP
header\-info
.RS 4
Show information about the current page protocol headers\&.
.RE
.PP
history\-manager
.RS 4
Open history manager\&.
.RE
.PP
history\-move\-back
.RS 4
Return to the previous document in history\&.
.RE
.PP
history\-move\-forward
.RS 4
Go forward in history\&.
.RE
.PP
jump\-to\-link
.RS 4
Jump to link\&.
.RE
.PP
keybinding\-manager
.RS 4
Open keybinding manager\&.
.RE
.PP
kill\-backgrounded\-connections
.RS 4
Kill all backgrounded connections\&.
.RE
.PP
link\-download
.RS 4
Download the current link\&.
.RE
.PP
link\-download\-image
.RS 4
Download the current image\&.
.RE
.PP
link\-download\-resume
.RS 4
Attempt to resume download of the current link\&.
.RE
.PP
link\-external\-command
.RS 4
Pass URI of current link to external command\&.
.RE
.PP
link\-follow
.RS 4
Follow the current link\&.
.RE
.PP
link\-follow\-reload
.RS 4
Follow the current link, forcing reload of the target\&.
.RE
.PP
link\-info
.RS 4
Show information about current link\&.
.RE
.PP
link\-menu
.RS 4
Open the link context menu\&.
.RE
.PP
link\-form\-menu
.RS 4
Open the form fields menu\&.
.RE
.PP
lua\-console
.RS 4
Open a Lua console\&.
.RE
.PP
mark\-goto
.RS 4
Go at a specified mark\&.
.RE
.PP
mark\-set
.RS 4
Set a mark\&.
.RE
.PP
menu
.RS 4
Activate the menu\&.
.RE
.PP
move\-current\-top
.RS 4
Move downwards to put the current line at the top of the screen\&.
.RE
.PP
move\-cursor\-down
.RS 4
Move cursor down\&.
.RE
.PP
move\-cursor\-left
.RS 4
Move cursor left\&.
.RE
.PP
move\-cursor\-line\-start
.RS 4
Move cursor to the start of the line\&.
.RE
.PP
move\-cursor\-right
.RS 4
Move cursor right\&.
.RE
.PP
move\-cursor\-up
.RS 4
Move cursor up\&.
.RE
.PP
move\-document\-end
.RS 4
Move to the end of the document\&.
.RE
.PP
move\-document\-start
.RS 4
Move to the start of the document\&.
.RE
.PP
move\-half\-page\-down
.RS 4
Move downwards by half a page\&.
.RE
.PP
move\-half\-page\-up
.RS 4
Move upwards by half a page\&.
.RE
.PP
move\-link\-down
.RS 4
Move one link down\&.
.RE
.PP
move\-link\-down\-line
.RS 4
Move to the next line with a link\&.
.RE
.PP
move\-link\-left
.RS 4
Move one link left\&.
.RE
.PP
move\-link\-left\-line
.RS 4
Move one link left or to the previous link\&.
.RE
.PP
move\-link\-next
.RS 4
Move to the next link\&.
.RE
.PP
move\-link\-prev
.RS 4
Move to the previous link\&.
.RE
.PP
move\-link\-right
.RS 4
Move one link right\&.
.RE
.PP
move\-link\-right\-line
.RS 4
Move one link right or to the next link\&.
.RE
.PP
move\-link\-up
.RS 4
Move one link up\&.
.RE
.PP
move\-link\-up\-line
.RS 4
Move to the previous line with a link\&.
.RE
.PP
move\-page\-down
.RS 4
Move downwards by a page\&.
.RE
.PP
move\-page\-up
.RS 4
Move upwards by a page\&.
.RE
.PP
open\-link\-in\-new\-tab
.RS 4
Open the current link in a new tab\&.
.RE
.PP
open\-link\-in\-new\-tab\-in\-background
.RS 4
Open the current link in a new tab in the background\&.
.RE
.PP
open\-link\-in\-new\-window
.RS 4
Open the current link in a new window\&.
.RE
.PP
open\-new\-tab
.RS 4
Open a new tab\&.
.RE
.PP
open\-new\-tab\-in\-background
.RS 4
Open a new tab in the background\&.
.RE
.PP
open\-new\-window
.RS 4
Open a new window\&.
.RE
.PP
open\-os\-shell
.RS 4
Open an OS shell\&.
.RE
.PP
options\-manager
.RS 4
Open options manager\&.
.RE
.PP
quit
.RS 4
Open a quit confirmation dialog box\&.
.RE
.PP
really\-quit
.RS 4
Quit without confirmation\&.
.RE
.PP
redraw
.RS 4
Redraw the terminal\&.
.RE
.PP
reload
.RS 4
Reload the current page\&.
.RE
.PP
rerender
.RS 4
Re\-render the current page\&.
.RE
.PP
reset\-form
.RS 4
Reset form items to their initial values\&.
.RE
.PP
resource\-info
.RS 4
Show information about the currently used resources\&.
.RE
.PP
save\-as
.RS 4
Save the current document in source form\&.
.RE
.PP
save\-formatted
.RS 4
Save the current document in formatted form\&.
.RE
.PP
save\-options
.RS 4
Save options\&.
.RE
.PP
save\-url\-as
.RS 4
Save URL as\&.
.RE
.PP
scroll\-down
.RS 4
Scroll down\&.
.RE
.PP
scroll\-left
.RS 4
Scroll left\&.
.RE
.PP
scroll\-right
.RS 4
Scroll right\&.
.RE
.PP
scroll\-up
.RS 4
Scroll up\&.
.RE
.PP
search
.RS 4
Search for a text pattern\&.
.RE
.PP
search\-back
.RS 4
Search backwards for a text pattern\&.
.RE
.PP
search\-typeahead
.RS 4
Search link text by typing ahead\&.
.RE
.PP
search\-typeahead\-link
.RS 4
Search link text by typing ahead\&.
.RE
.PP
search\-typeahead\-text
.RS 4
Search document text by typing ahead\&.
.RE
.PP
search\-typeahead\-text\-back
.RS 4
Search document text backwards by typing ahead\&.
.RE
.PP
show\-term\-options
.RS 4
Show terminal options dialog\&.
.RE
.PP
submit\-form
.RS 4
Submit form\&.
.RE
.PP
submit\-form\-reload
.RS 4
Submit form and reload\&.
.RE
.PP
tab\-close
.RS 4
Close tab\&.
.RE
.PP
tab\-close\-all\-but\-current
.RS 4
Close all tabs but the current one\&.
.RE
.PP
tab\-external\-command
.RS 4
Pass URI of current tab to external command\&.
.RE
.PP
tab\-menu
.RS 4
Open the tab menu\&.
.RE
.PP
tab\-move\-left
.RS 4
Move the current tab to the left\&.
.RE
.PP
tab\-move\-right
.RS 4
Move the current tab to the right\&.
.RE
.PP
tab\-next
.RS 4
Next tab\&.
.RE
.PP
tab\-prev
.RS 4
Previous tab\&.
.RE
.PP
terminal\-resize
.RS 4
Open the terminal resize dialog\&.
.RE
.PP
toggle\-css
.RS 4
Toggle rendering of page using CSS\&.
.RE
.PP
toggle\-display\-images
.RS 4
Toggle displaying of links to images\&.
.RE
.PP
toggle\-display\-tables
.RS 4
Toggle rendering of tables\&.
.RE
.PP
toggle\-document\-colors
.RS 4
Toggle usage of document specific colors\&.
.RE
.PP
toggle\-html\-plain
.RS 4
Toggle rendering page as HTML / plain text\&.
.RE
.PP
toggle\-mouse
.RS 4
Toggle mouse handling\&.
.RE
.PP
toggle\-numbered\-links
.RS 4
Toggle displaying of links numbers\&.
.RE
.PP
toggle\-plain\-compress\-empty\-lines
.RS 4
Toggle plain renderer compression of empty lines\&.
.RE
.PP
toggle\-wrap\-text
.RS 4
Toggle wrapping of text\&.
.RE
.PP
view\-image
.RS 4
View the current image\&.
.RE
.SS "EDIT ACTIONS"
.PP
auto\-complete
.RS 4
Attempt to auto\-complete the input\&.
.RE
.PP
auto\-complete\-file
.RS 4
Attempt to auto\-complete a local file\&.
.RE
.PP
auto\-complete\-unambiguous
.RS 4
Attempt to unambiguously auto\-complete the input\&.
.RE
.PP
backspace
.RS 4
Delete character in front of the cursor\&.
.RE
.PP
beginning\-of\-buffer
.RS 4
Go to the first line of the buffer\&.
.RE
.PP
cancel
.RS 4
Cancel current state\&.
.RE
.PP
copy\-clipboard
.RS 4
Copy text to clipboard\&.
.RE
.PP
cut\-clipboard
.RS 4
Cut text to clipboard\&.
.RE
.PP
delete
.RS 4
Delete character under cursor\&.
.RE
.PP
down
.RS 4
Move cursor downwards\&.
.RE
.PP
end
.RS 4
Go to the end of the page/line\&.
.RE
.PP
end\-of\-buffer
.RS 4
Go to the last line of the buffer\&.
.RE
.PP
enter
.RS 4
Follow the current link\&.
.RE
.PP
home
.RS 4
Go to the start of the page/line\&.
.RE
.PP
kill\-to\-bol
.RS 4
Delete to beginning of line\&.
.RE
.PP
kill\-to\-eol
.RS 4
Delete to end of line\&.
.RE
.PP
kill\-word\-back
.RS 4
Delete backwards to start of word\&.
.RE
.PP
left
.RS 4
Move the cursor left\&.
.RE
.PP
move\-backward\-word
.RS 4
Move cursor before current word\&.
.RE
.PP
move\-forward\-word
.RS 4
Move cursor after current word\&.
.RE
.PP
next\-item
.RS 4
Move to the next item\&.
.RE
.PP
open\-external
.RS 4
Open in external editor\&.
.RE
.PP
paste\-clipboard
.RS 4
Paste text from the clipboard\&.
.RE
.PP
previous\-item
.RS 4
Move to the previous item\&.
.RE
.PP
redraw
.RS 4
Redraw the terminal\&.
.RE
.PP
right
.RS 4
Move the cursor right\&.
.RE
.PP
search\-toggle\-regex
.RS 4
Toggle regex matching (type\-ahead searching)\&.
.RE
.PP
up
.RS 4
Move cursor upwards\&.
.RE
.SS "MENU ACTIONS"
.PP
cancel
.RS 4
Cancel current state\&.
.RE
.PP
delete
.RS 4
Delete character under cursor\&.
.RE
.PP
down
.RS 4
Move cursor downwards\&.
.RE
.PP
end
.RS 4
Go to the end of the page/line\&.
.RE
.PP
enter
.RS 4
Follow the current link\&.
.RE
.PP
expand
.RS 4
Expand item\&.
.RE
.PP
home
.RS 4
Go to the start of the page/line\&.
.RE
.PP
left
.RS 4
Move the cursor left\&.
.RE
.PP
mark\-item
.RS 4
Mark item\&.
.RE
.PP
next\-item
.RS 4
Move to the next item\&.
.RE
.PP
page\-down
.RS 4
Move downwards by a page\&.
.RE
.PP
page\-up
.RS 4
Move upwards by a page\&.
.RE
.PP
previous\-item
.RS 4
Move to the previous item\&.
.RE
.PP
redraw
.RS 4
Redraw the terminal\&.
.RE
.PP
right
.RS 4
Move the cursor right\&.
.RE
.PP
search
.RS 4
Search for a text pattern\&.
.RE
.PP
select
.RS 4
Select current highlighted item\&.
.RE
.PP
unexpand
.RS 4
Collapse item\&.
.RE
.PP
up
.RS 4
Move cursor upwards\&.
.RE
.SH "DEFAULT BINDINGS"
The default bindings are shown below\&. Any bindings in ~/\&.elinks/elinks\&.conf will override these\&.
.sp
.SS "MAIN KEYS"
.PP
\fISpace\fR
.RS 4
Move downwards by a page (\fImove\-page\-down\fR)
.RE
.PP
\fI"#"\fR
.RS 4
Search link text by typing ahead (\fIsearch\-typeahead\fR)
.RE
.PP
\fI"%"\fR
.RS 4
Toggle usage of document specific colors (\fItoggle\-document\-colors\fR)
.RE
.PP
\fI"*"\fR
.RS 4
Toggle displaying of links to images (\fItoggle\-display\-images\fR)
.RE
.PP
\fI","\fR
.RS 4
Open a Lua console (\fIlua\-console\fR)
.RE
.PP
\fI"\&."\fR
.RS 4
Toggle displaying of links numbers (\fItoggle\-numbered\-links\fR)
.RE
.PP
\fI"/"\fR
.RS 4
Search for a text pattern (\fIsearch\fR)
.RE
.PP
\fI":"\fR
.RS 4
Enter ex\-mode (command line) (\fIexmode\fR)
.RE
.PP
\fI"<"\fR
.RS 4
Previous tab (\fItab\-prev\fR)
.RE
.PP
\fIAlt\-"<"\fR
.RS 4
Move the current tab to the left (\fItab\-move\-left\fR)
.RE
.PP
\fI"="\fR
.RS 4
Show information about the current page (\fIdocument\-info\fR)
.RE
.PP
\fI">"\fR
.RS 4
Next tab (\fItab\-next\fR)
.RE
.PP
\fIAlt\-">"\fR
.RS 4
Move the current tab to the right (\fItab\-move\-right\fR)
.RE
.PP
\fI"?"\fR
.RS 4
Search backwards for a text pattern (\fIsearch\-back\fR)
.RE
.PP
\fI"A"\fR
.RS 4
Add a new bookmark using current link (\fIadd\-bookmark\-link\fR)
.RE
.PP
\fICtrl\-"A"\fR
.RS 4
Move to the start of the document (\fImove\-document\-start\fR)
.RE
.PP
\fICtrl\-"B"\fR
.RS 4
Move upwards by a page (\fImove\-page\-up\fR)
.RE
.PP
\fI"C"\fR
.RS 4
Open cache manager (\fIcache\-manager\fR)
.RE
.PP
\fI"D"\fR
.RS 4
Open download manager (\fIdownload\-manager\fR)
.RE
.PP
\fI"E"\fR
.RS 4
Open "Go to URL" dialog box containing the current link URL (\fIgoto\-url\-current\-link\fR)
.RE
.PP
\fICtrl\-"E"\fR
.RS 4
Move to the end of the document (\fImove\-document\-end\fR)
.RE
.PP
\fI"F"\fR
.RS 4
Open form history manager (\fIformhist\-manager\fR)
.RE
.PP
\fICtrl\-"F"\fR
.RS 4
Move downwards by a page (\fImove\-page\-down\fR)
.RE
.PP
\fI"G"\fR
.RS 4
Open "Go to URL" dialog box containing the current URL (\fIgoto\-url\-current\fR)
.RE
.PP
\fI"H"\fR
.RS 4
Go to the homepage (\fIgoto\-url\-home\fR)
.RE
.PP
\fI"K"\fR
.RS 4
Open cookie manager (\fIcookie\-manager\fR)
.RE
.PP
\fICtrl\-"K"\fR
.RS 4
Reload cookies file (\fIcookies\-load\fR)
.RE
.PP
\fI"L"\fR
.RS 4
Open the link context menu (\fIlink\-menu\fR)
.RE
.PP
\fICtrl\-"L"\fR
.RS 4
Redraw the terminal (\fIredraw\fR)
.RE
.PP
\fI"N"\fR
.RS 4
Find the previous occurrence of the current search text (\fIfind\-next\-back\fR)
.RE
.PP
\fICtrl\-"N"\fR
.RS 4
Scroll down (\fIscroll\-down\fR)
.RE
.PP
\fICtrl\-"P"\fR
.RS 4
Scroll up (\fIscroll\-up\fR)
.RE
.PP
\fI"Q"\fR
.RS 4
Quit without confirmation (\fIreally\-quit\fR)
.RE
.PP
\fICtrl\-"R"\fR
.RS 4
Reload the current page (\fIreload\fR)
.RE
.PP
\fI"T"\fR
.RS 4
Open the current link in a new tab in the background (\fIopen\-link\-in\-new\-tab\-in\-background\fR)
.RE
.PP
\fI"W"\fR
.RS 4
Toggle wrapping of text (\fItoggle\-wrap\-text\fR)
.RE
.PP
\fI"["\fR
.RS 4
Scroll left (\fIscroll\-left\fR)
.RE
.PP
\fI"\'"\fR
.RS 4
Go at a specified mark (\fImark\-goto\fR)
.RE
.PP
\fI"\e"\fR
.RS 4
Toggle rendering page as HTML / plain text (\fItoggle\-html\-plain\fR)
.RE
.PP
\fI"]"\fR
.RS 4
Scroll right (\fIscroll\-right\fR)
.RE
.PP
\fI"a"\fR
.RS 4
Add a new bookmark (\fIadd\-bookmark\fR)
.RE
.PP
\fI"b"\fR
.RS 4
Move upwards by a page (\fImove\-page\-up\fR)
.RE
.PP
\fI"c"\fR
.RS 4
Close tab (\fItab\-close\fR)
.RE
.PP
\fI"d"\fR
.RS 4
Download the current link (\fIlink\-download\fR)
.RE
.PP
\fI"e"\fR
.RS 4
Open the tab menu (\fItab\-menu\fR)
.RE
.PP
\fI"f"\fR
.RS 4
Maximize the current frame (\fIframe\-maximize\fR)
.RE
.PP
\fI"g"\fR
.RS 4
Open "Go to URL" dialog box (\fIgoto\-url\fR)
.RE
.PP
\fI"h"\fR
.RS 4
Open history manager (\fIhistory\-manager\fR)
.RE
.PP
\fI"k"\fR
.RS 4
Open keybinding manager (\fIkeybinding\-manager\fR)
.RE
.PP
\fI"l"\fR
.RS 4
Jump to link (\fIjump\-to\-link\fR)
.RE
.PP
\fI"m"\fR
.RS 4
Set a mark (\fImark\-set\fR)
.RE
.PP
\fI"n"\fR
.RS 4
Find the next occurrence of the current search text (\fIfind\-next\fR)
.RE
.PP
\fI"o"\fR
.RS 4
Open options manager (\fIoptions\-manager\fR)
.RE
.PP
\fI"q"\fR
.RS 4
Open a quit confirmation dialog box (\fIquit\fR)
.RE
.PP
\fI"r"\fR
.RS 4
Attempt to resume download of the current link (\fIlink\-download\-resume\fR)
.RE
.PP
\fI"s"\fR
.RS 4
Open bookmark manager (\fIbookmark\-manager\fR)
.RE
.PP
\fI"t"\fR
.RS 4
Open a new tab (\fIopen\-new\-tab\fR)
.RE
.PP
\fI"u"\fR
.RS 4
Go forward in history (\fIhistory\-move\-forward\fR)
.RE
.PP
\fI"v"\fR
.RS 4
View the current image (\fIview\-image\fR)
.RE
.PP
\fI"x"\fR
.RS 4
Follow the current link, forcing reload of the target (\fIlink\-follow\-reload\fR)
.RE
.PP
\fI"z"\fR
.RS 4
Abort connection (\fIabort\-connection\fR)
.RE
.PP
\fI"{"\fR
.RS 4
Scroll left (\fIscroll\-left\fR)
.RE
.PP
\fI"|"\fR
.RS 4
Show information about the current page protocol headers (\fIheader\-info\fR)
.RE
.PP
\fI"}"\fR
.RS 4
Scroll right (\fIscroll\-right\fR)
.RE
.PP
\fIBackspace\fR
.RS 4
Backspace the last entered digit of the current prefix (\fIbackspace\-prefix\fR)
.RE
.PP
\fIDelete\fR
.RS 4
Scroll down (\fIscroll\-down\fR)
.RE
.PP
\fIDown\fR
.RS 4
Move to the next link (\fImove\-link\-next\fR)
.RE
.PP
\fIEnd\fR
.RS 4
Move to the end of the document (\fImove\-document\-end\fR)
.RE
.PP
\fIEnter\fR
.RS 4
Follow the current link (\fIlink\-follow\fR)
.RE
.PP
\fICtrl\-Enter\fR
.RS 4
Follow the current link, forcing reload of the target (\fIlink\-follow\-reload\fR)
.RE
.PP
\fIEscape\fR
.RS 4
Activate the menu (\fImenu\fR)
.RE
.PP
\fIF10\fR
.RS 4
Open the File menu (\fIfile\-menu\fR)
.RE
.PP
\fIF9\fR
.RS 4
Activate the menu (\fImenu\fR)
.RE
.PP
\fIHome\fR
.RS 4
Move to the start of the document (\fImove\-document\-start\fR)
.RE
.PP
\fIInsert\fR
.RS 4
Scroll up (\fIscroll\-up\fR)
.RE
.PP
\fICtrl\-Insert\fR
.RS 4
Copy text to clipboard (\fIcopy\-clipboard\fR)
.RE
.PP
\fILeft\fR
.RS 4
Return to the previous document in history (\fIhistory\-move\-back\fR)
.RE
.PP
\fIPageDown\fR
.RS 4
Move downwards by a page (\fImove\-page\-down\fR)
.RE
.PP
\fIPageUp\fR
.RS 4
Move upwards by a page (\fImove\-page\-up\fR)
.RE
.PP
\fIRight\fR
.RS 4
Follow the current link (\fIlink\-follow\fR)
.RE
.PP
\fICtrl\-Right\fR
.RS 4
Follow the current link, forcing reload of the target (\fIlink\-follow\-reload\fR)
.RE
.PP
\fITab\fR
.RS 4
Move to the next frame (\fIframe\-next\fR)
.RE
.PP
\fIAlt\-Tab\fR
.RS 4
Move to the previous frame (\fIframe\-prev\fR)
.RE
.PP
\fIShift\-Tab\fR
.RS 4
Move to the previous frame (\fIframe\-prev\fR)
.RE
.PP
\fIUp\fR
.RS 4
Move to the previous link (\fImove\-link\-prev\fR)
.RE
.SS "EDIT KEYS"
.PP
\fIAlt\-"<"\fR
.RS 4
Go to the first line of the buffer (\fIbeginning\-of\-buffer\fR)
.RE
.PP
\fIAlt\-">"\fR
.RS 4
Go to the last line of the buffer (\fIend\-of\-buffer\fR)
.RE
.PP
\fICtrl\-"A"\fR
.RS 4
Go to the start of the page/line (\fIhome\fR)
.RE
.PP
\fIAlt\-"b"\fR
.RS 4
Move cursor before current word (\fImove\-backward\-word\fR)
.RE
.PP
\fICtrl\-"D"\fR
.RS 4
Delete character under cursor (\fIdelete\fR)
.RE
.PP
\fICtrl\-"E"\fR
.RS 4
Go to the end of the page/line (\fIend\fR)
.RE
.PP
\fIAlt\-"f"\fR
.RS 4
Move cursor after current word (\fImove\-forward\-word\fR)
.RE
.PP
\fICtrl\-"H"\fR
.RS 4
Delete character in front of the cursor (\fIbackspace\fR)
.RE
.PP
\fICtrl\-"K"\fR
.RS 4
Delete to end of line (\fIkill\-to\-eol\fR)
.RE
.PP
\fICtrl\-"L"\fR
.RS 4
Redraw the terminal (\fIredraw\fR)
.RE
.PP
\fIAlt\-"r"\fR
.RS 4
Toggle regex matching (type\-ahead searching) (\fIsearch\-toggle\-regex\fR)
.RE
.PP
\fICtrl\-"F"\fR
.RS 4
Attempt to auto\-complete a local file (\fIauto\-complete\-file\fR)
.RE
.PP
\fICtrl\-"R"\fR
.RS 4
Attempt to unambiguously auto\-complete the input (\fIauto\-complete\-unambiguous\fR)
.RE
.PP
\fICtrl\-"T"\fR
.RS 4
Open in external editor (\fIopen\-external\fR)
.RE
.PP
\fICtrl\-"U"\fR
.RS 4
Delete to beginning of line (\fIkill\-to\-bol\fR)
.RE
.PP
\fICtrl\-"V"\fR
.RS 4
Paste text from the clipboard (\fIpaste\-clipboard\fR)
.RE
.PP
\fICtrl\-"W"\fR
.RS 4
Attempt to auto\-complete the input (\fIauto\-complete\fR)
.RE
.PP
\fICtrl\-"X"\fR
.RS 4
Cut text to clipboard (\fIcut\-clipboard\fR)
.RE
.PP
\fIAlt\-Backspace\fR
.RS 4
Delete backwards to start of word (\fIkill\-word\-back\fR)
.RE
.PP
\fIBackspace\fR
.RS 4
Delete character in front of the cursor (\fIbackspace\fR)
.RE
.PP
\fIDelete\fR
.RS 4
Delete character under cursor (\fIdelete\fR)
.RE
.PP
\fIDown\fR
.RS 4
Move cursor downwards (\fIdown\fR)
.RE
.PP
\fIEnd\fR
.RS 4
Go to the end of the page/line (\fIend\fR)
.RE
.PP
\fIEnter\fR
.RS 4
Follow the current link (\fIenter\fR)
.RE
.PP
\fIEscape\fR
.RS 4
Cancel current state (\fIcancel\fR)
.RE
.PP
\fIF4\fR
.RS 4
Open in external editor (\fIopen\-external\fR)
.RE
.PP
\fIHome\fR
.RS 4
Go to the start of the page/line (\fIhome\fR)
.RE
.PP
\fICtrl\-Insert\fR
.RS 4
Copy text to clipboard (\fIcopy\-clipboard\fR)
.RE
.PP
\fILeft\fR
.RS 4
Move the cursor left (\fIleft\fR)
.RE
.PP
\fIRight\fR
.RS 4
Move the cursor right (\fIright\fR)
.RE
.PP
\fITab\fR
.RS 4
Move to the next item (\fInext\-item\fR)
.RE
.PP
\fIAlt\-Tab\fR
.RS 4
Move to the previous item (\fIprevious\-item\fR)
.RE
.PP
\fIShift\-Tab\fR
.RS 4
Move to the previous item (\fIprevious\-item\fR)
.RE
.PP
\fIUp\fR
.RS 4
Move cursor upwards (\fIup\fR)
.RE
.SS "MENU KEYS"
.PP
\fISpace\fR
.RS 4
Select current highlighted item (\fIselect\fR)
.RE
.PP
\fI"*"\fR
.RS 4
Mark item (\fImark\-item\fR)
.RE
.PP
\fI"+"\fR
.RS 4
Expand item (\fIexpand\fR)
.RE
.PP
\fI"\-"\fR
.RS 4
Collapse item (\fIunexpand\fR)
.RE
.PP
\fI"/"\fR
.RS 4
Search for a text pattern (\fIsearch\fR)
.RE
.PP
\fI"="\fR
.RS 4
Expand item (\fIexpand\fR)
.RE
.PP
\fICtrl\-"A"\fR
.RS 4
Go to the start of the page/line (\fIhome\fR)
.RE
.PP
\fICtrl\-"B"\fR
.RS 4
Move upwards by a page (\fIpage\-up\fR)
.RE
.PP
\fICtrl\-"E"\fR
.RS 4
Go to the end of the page/line (\fIend\fR)
.RE
.PP
\fICtrl\-"F"\fR
.RS 4
Move downwards by a page (\fIpage\-down\fR)
.RE
.PP
\fICtrl\-"L"\fR
.RS 4
Redraw the terminal (\fIredraw\fR)
.RE
.PP
\fICtrl\-"N"\fR
.RS 4
Move cursor downwards (\fIdown\fR)
.RE
.PP
\fICtrl\-"P"\fR
.RS 4
Move cursor upwards (\fIup\fR)
.RE
.PP
\fIAlt\-"V"\fR
.RS 4
Move upwards by a page (\fIpage\-up\fR)
.RE
.PP
\fICtrl\-"V"\fR
.RS 4
Move downwards by a page (\fIpage\-down\fR)
.RE
.PP
\fI"["\fR
.RS 4
Expand item (\fIexpand\fR)
.RE
.PP
\fI"]"\fR
.RS 4
Collapse item (\fIunexpand\fR)
.RE
.PP
\fI"_"\fR
.RS 4
Collapse item (\fIunexpand\fR)
.RE
.PP
\fIDelete\fR
.RS 4
Delete character under cursor (\fIdelete\fR)
.RE
.PP
\fIDown\fR
.RS 4
Move cursor downwards (\fIdown\fR)
.RE
.PP
\fIEnd\fR
.RS 4
Go to the end of the page/line (\fIend\fR)
.RE
.PP
\fIEnter\fR
.RS 4
Follow the current link (\fIenter\fR)
.RE
.PP
\fIEscape\fR
.RS 4
Cancel current state (\fIcancel\fR)
.RE
.PP
\fIHome\fR
.RS 4
Go to the start of the page/line (\fIhome\fR)
.RE
.PP
\fIInsert\fR
.RS 4
Mark item (\fImark\-item\fR)
.RE
.PP
\fILeft\fR
.RS 4
Move the cursor left (\fIleft\fR)
.RE
.PP
\fIPageDown\fR
.RS 4
Move downwards by a page (\fIpage\-down\fR)
.RE
.PP
\fIPageUp\fR
.RS 4
Move upwards by a page (\fIpage\-up\fR)
.RE
.PP
\fIRight\fR
.RS 4
Move the cursor right (\fIright\fR)
.RE
.PP
\fITab\fR
.RS 4
Move to the next item (\fInext\-item\fR)
.RE
.PP
\fIAlt\-Tab\fR
.RS 4
Move to the previous item (\fIprevious\-item\fR)
.RE
.PP
\fIShift\-Tab\fR
.RS 4
Move to the previous item (\fIprevious\-item\fR)
.RE
.PP
\fIUp\fR
.RS 4
Move cursor upwards (\fIup\fR)
.RE
.SH "AUTHOR"
This manual page was finally written by Peter Wang (one and a half years after writing the binding code), using excerpts by David Mediavilla\&. You can thank Petr Baudis for the subtle requests for documentation\&. Updated by Zas\&. Moved to asciidoc format and cleaned up by Jonas Fonseca\&.
.sp
.SH "SEE ALSO"
\fBelinks\fR(1), \fBelinks.conf\fR(5)
.sp
|