2008-03-08 07:53:56 -05:00
. \" Title: elinkskeys
. \" Author:
2008-09-27 08:51:02 -04:00
. \" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
2009-03-29 11:26:20 -04:00
. \" Date: 03/29/2009
2008-03-08 07:53:56 -05:00
. \" Manual: ELinks keybindings
2008-03-08 09:20:55 -05:00
. \" Source: ELinks 0.13.GIT
2008-03-08 07:53:56 -05:00
. \"
2009-03-29 11:26:20 -04:00
.TH "ELINKSKEYS" "5" "03/29/2009" "ELinks 0\&.13\&.GIT" "ELinks keybindings"
2008-03-08 07:53:56 -05:00
. \" disable hyphenation
.nh
. \" disable justification (adjust text to left margin only)
.ad l
.SH "NAME"
2005-09-15 09:58:31 -04:00
elinkskeys \- keybindings for ELinks
2007-06-21 17:01:04 -04:00
.SH "SYNOPSIS"
2008-09-27 08:51:02 -04:00
Information on how to configure keybinding and overview of the default keybindings\& .
2008-03-08 07:53:56 -05:00
.sp
2005-09-15 09:58:31 -04:00
.SH "DESCRIPTION"
2008-09-27 08:51:02 -04:00
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\& .
2008-03-08 07:53:56 -05:00
.sp
2005-09-15 09:58:31 -04:00
Key binding statements are of the form:
2008-03-08 07:53:56 -05:00
.sp
.sp
.RS 4
2005-09-15 09:58:31 -04:00
.nf
bind <keymap> <keystroke> = <action>
.fi
2008-03-08 07:53:56 -05:00
.RE
2005-09-15 09:58:31 -04:00
where:
2008-03-08 07:53:56 -05:00
.PP
2005-09-15 09:58:31 -04:00
<keymap>
2008-03-08 07:53:56 -05:00
.RS 4
is
\fI main\fR ,
\fI edit\fR , or
2008-09-27 08:51:02 -04:00
\fI menu\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\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
<keystroke>
2008-03-08 07:53:56 -05:00
.RS 4
is a case sensitive key, which you can prefix with
\fI Ctrl\- \fR ,
2008-09-27 08:51:02 -04:00
\fI Alt\- \fR , or both\& .
2008-03-08 07:53:56 -05:00
\fI Ctrl\- \fR
2008-09-27 08:51:02 -04:00
must be followed by an uppercase key\& . See below for a list of valid keys\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
<action>
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
is what the key should do\& . The actions available are dependent on the keymap, and are listed separately below\& .
2008-03-08 07:53:56 -05:00
.RE
2008-09-27 08:51:02 -04:00
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\& .
2008-03-08 07:53:56 -05:00
.sp
2008-09-27 08:51:02 -04:00
Keys can be unbound just by binding them to the special \fI none\fR action\& . It may be of use if you accidentally type a key often\& .
2008-03-08 07:53:56 -05:00
.sp
2005-09-15 09:58:31 -04:00
.SH "EXAMPLE BINDINGS"
Some sample keybindings:
2008-03-08 07:53:56 -05:00
.sp
.sp
.RS 4
2005-09-15 09:58:31 -04:00
.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
2008-03-08 07:53:56 -05:00
.RE
2005-09-15 09:58:31 -04:00
.SH "KEYS"
2008-09-27 08:51:02 -04:00
Valid keys are: alphanumeric characters, punctuation, \fI Enter\fR , \fI Backspace\fR , \fI Tab\fR , \fI Escape\fR , \fI Left\fR , \fI Right\fR , \fI Up\fR , \fI Down\fR , \fI Insert\fR , \fI Delete\fR , \fI Home\fR , \fI End\fR , \fI PageUp\fR , \fI PageDown\fR , \fI F1\fR to \fI F12\fR \& .
2008-03-08 07:53:56 -05:00
.sp
2008-09-27 08:51:02 -04:00
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)\& .
2008-03-08 07:53:56 -05:00
.sp
Redo the whole doc/ build thing
You can now use: make {all-docs,pdf,html,man,api,update-man}
instead of: make {all-docs,pdf-docs,html-docs,man-docs}
Away is building into separate dirs. This makes make able to actually get
dependencies right, since there are now a collection of 'common' build
rules, some of which have even been moved to use the cmd infrastructure.
To update the man pages there is a new update-man rule. It builds the
manual pages and copies them to their proper place under man/ while doing
the final preformatting.
As good thing is that the (two) man pages are moved to .txt files and
include the generated content.
The API building thing is also refined. It builds into api/ and builds it's
list of files dynamically by searching throught the .h files in the src/
directory. Documented header files must contain a comment like this:
/* API Doc :: <api-name> */
where <api-name> is the name used for the file under api/, for example
dom-scanner.
2006-01-11 05:02:43 -05:00
.SH "KEYMAP ACTIONS"
.SS "MAIN ACTIONS"
2008-03-08 07:53:56 -05:00
.PP
2005-09-15 09:58:31 -04:00
abort\- connection
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Abort connection\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
add\- bookmark
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Add a new bookmark\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
add\- bookmark\- link
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Add a new bookmark using current link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
add\- bookmark\- tabs
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Bookmark all open tabs\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
auth\- manager
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open authentication manager\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2006-06-12 16:30:42 -04:00
backspace\- prefix
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Backspace the last entered digit of the current prefix\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
bookmark\- manager
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open bookmark manager\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
cache\- manager
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open cache manager\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
cache\- minimize
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Free unused cache entries\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
cookie\- manager
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open cookie manager\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
cookies\- load
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Reload cookies file\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
copy\- clipboard
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Copy text to clipboard\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
document\- info
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Show information about the current page\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
download\- manager
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open download manager\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
exmode
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Enter ex\- mode (command line)\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
file\- menu
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open the File menu\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
find\- next
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Find the next occurrence of the current search text\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
find\- next\- back
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Find the previous occurrence of the current search text\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
forget\- credentials
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Forget authentication credentials\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
formhist\- manager
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open form history manager\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
frame\- external\- command
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Pass URI of current frame to external command\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
frame\- maximize
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Maximize the current frame\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
frame\- next
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move to the next frame\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
frame\- prev
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move to the previous frame\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
goto\- url
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open "Go to URL" dialog box\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
goto\- url\- current
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open "Go to URL" dialog box containing the current URL\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
goto\- url\- current\- link
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open "Go to URL" dialog box containing the current link URL\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
goto\- url\- home
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Go to the homepage\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
header\- info
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Show information about the current page protocol headers\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
history\- manager
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open history manager\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
history\- move\- back
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Return to the previous document in history\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
history\- move\- forward
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Go forward in history\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
jump\- to\- link
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Jump to link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
keybinding\- manager
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open keybinding manager\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
kill\- backgrounded\- connections
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Kill all backgrounded connections\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
link\- download
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Download the current link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
link\- download\- image
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Download the current image\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
link\- download\- resume
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Attempt to resume download of the current link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
link\- external\- command
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Pass URI of current link to external command\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
link\- follow
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Follow the current link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
link\- follow\- reload
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Follow the current link, forcing reload of the target\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2008-03-08 09:20:55 -05:00
link\- info
.RS 4
2008-09-27 09:28:28 -04:00
Show information about current link\& .
2008-03-08 09:20:55 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
link\- menu
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open the link context menu\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2006-01-03 09:18:49 -05:00
link\- form\- menu
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open the form fields menu\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
lua\- console
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open a Lua console\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
mark\- goto
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Go at a specified mark\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
mark\- set
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Set a mark\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
menu
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Activate the menu\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2013-12-18 08:03:35 -05:00
move\- current\- top
.RS 4
Move downwards to put the current line at the top of the screen\& .
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- cursor\- down
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move cursor down\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- cursor\- left
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move cursor left\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
move\- cursor\- line\- start
.RS 4
2008-09-27 08:51:02 -04:00
Move cursor to the start of the line\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- cursor\- right
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move cursor right\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- cursor\- up
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move cursor up\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- document\- end
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move to the end of the document\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- document\- start
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move to the start of the document\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2013-12-18 08:03:35 -05:00
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
2005-09-15 09:58:31 -04:00
move\- link\- down
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move one link down\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
move\- link\- down\- line
.RS 4
2008-09-27 08:51:02 -04:00
Move to the next line with a link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- link\- left
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move one link left\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
move\- link\- left\- line
.RS 4
2008-09-27 08:51:02 -04:00
Move one link left or to the previous link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- link\- next
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move to the next link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- link\- prev
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move to the previous link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- link\- right
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move one link right\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
move\- link\- right\- line
.RS 4
2008-09-27 08:51:02 -04:00
Move one link right or to the next link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- link\- up
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move one link up\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
move\- link\- up\- line
.RS 4
2008-09-27 08:51:02 -04:00
Move to the previous line with a link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- page\- down
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move downwards by a page\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
move\- page\- up
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move upwards by a page\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
open\- link\- in\- new\- tab
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open the current link in a new tab\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
open\- link\- in\- new\- tab\- in\- background
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open the current link in a new tab in the background\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
open\- link\- in\- new\- window
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open the current link in a new window\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
open\- new\- tab
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open a new tab\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
open\- new\- tab\- in\- background
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open a new tab in the background\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
open\- new\- window
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open a new window\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
open\- os\- shell
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open an OS shell\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
options\- manager
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open options manager\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
quit
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open a quit confirmation dialog box\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
really\- quit
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Quit without confirmation\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
redraw
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Redraw the terminal\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
reload
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Reload the current page\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
rerender
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Re\- render the current page\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
reset\- form
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Reset form items to their initial values\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
resource\- info
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Show information about the currently used resources\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
save\- as
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Save the current document in source form\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
save\- formatted
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Save the current document in formatted form\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
save\- options
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Save options\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
save\- url\- as
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Save URL as\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
scroll\- down
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Scroll down\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
scroll\- left
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Scroll left\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
scroll\- right
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Scroll right\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
scroll\- up
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Scroll up\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
search
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Search for a text pattern\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
search\- back
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Search backwards for a text pattern\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
search\- typeahead
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Search link text by typing ahead\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
search\- typeahead\- link
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Search link text by typing ahead\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
search\- typeahead\- text
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Search document text by typing ahead\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
search\- typeahead\- text\- back
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Search document text backwards by typing ahead\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
show\- term\- options
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Show terminal options dialog\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
submit\- form
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Submit form\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
submit\- form\- reload
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Submit form and reload\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
tab\- close
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Close tab\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
tab\- close\- all\- but\- current
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Close all tabs but the current one\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
tab\- external\- command
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Pass URI of current tab to external command\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
tab\- menu
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open the tab menu\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
tab\- move\- left
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move the current tab to the left\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
tab\- move\- right
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move the current tab to the right\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
tab\- next
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Next tab\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
tab\- prev
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Previous tab\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
terminal\- resize
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open the terminal resize dialog\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
toggle\- css
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Toggle rendering of page using CSS\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
toggle\- display\- images
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Toggle displaying of links to images\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
toggle\- display\- tables
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Toggle rendering of tables\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
toggle\- document\- colors
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Toggle usage of document specific colors\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
toggle\- html\- plain
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Toggle rendering page as HTML / plain text\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
toggle\- mouse
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Toggle mouse handling\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
toggle\- numbered\- links
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Toggle displaying of links numbers\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
toggle\- plain\- compress\- empty\- lines
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Toggle plain renderer compression of empty lines\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
toggle\- wrap\- text
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Toggle wrapping of text\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
view\- image
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
View the current image\& .
2008-03-08 07:53:56 -05:00
.RE
Redo the whole doc/ build thing
You can now use: make {all-docs,pdf,html,man,api,update-man}
instead of: make {all-docs,pdf-docs,html-docs,man-docs}
Away is building into separate dirs. This makes make able to actually get
dependencies right, since there are now a collection of 'common' build
rules, some of which have even been moved to use the cmd infrastructure.
To update the man pages there is a new update-man rule. It builds the
manual pages and copies them to their proper place under man/ while doing
the final preformatting.
As good thing is that the (two) man pages are moved to .txt files and
include the generated content.
The API building thing is also refined. It builds into api/ and builds it's
list of files dynamically by searching throught the .h files in the src/
directory. Documented header files must contain a comment like this:
/* API Doc :: <api-name> */
where <api-name> is the name used for the file under api/, for example
dom-scanner.
2006-01-11 05:02:43 -05:00
.SS "EDIT ACTIONS"
2008-03-08 07:53:56 -05:00
.PP
2005-09-15 09:58:31 -04:00
auto\- complete
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Attempt to auto\- complete the input\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
auto\- complete\- file
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Attempt to auto\- complete a local file\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
auto\- complete\- unambiguous
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Attempt to unambiguously auto\- complete the input\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
backspace
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Delete character in front of the cursor\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
beginning\- of\- buffer
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Go to the first line of the buffer\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
cancel
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Cancel current state\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
copy\- clipboard
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Copy text to clipboard\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
cut\- clipboard
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Cut text to clipboard\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
delete
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Delete character under cursor\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
down
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move cursor downwards\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
end
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Go to the end of the page/line\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
end\- of\- buffer
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Go to the last line of the buffer\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
enter
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Follow the current link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
home
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Go to the start of the page/line\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
kill\- to\- bol
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Delete to beginning of line\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
kill\- to\- eol
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Delete to end of line\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2007-01-06 16:46:35 -05:00
kill\- word\- back
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Delete backwards to start of word\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
left
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move the cursor left\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2007-01-06 16:46:35 -05:00
move\- backward\- word
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move cursor before current word\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2007-01-06 16:46:35 -05:00
move\- forward\- word
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move cursor after current word\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
next\- item
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move to the next item\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
open\- external
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Open in external editor\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
paste\- clipboard
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Paste text from the clipboard\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
previous\- item
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move to the previous item\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
redraw
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Redraw the terminal\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
right
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move the cursor right\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
search\- toggle\- regex
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Toggle regex matching (type\- ahead searching)\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
up
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move cursor upwards\& .
2008-03-08 07:53:56 -05:00
.RE
Redo the whole doc/ build thing
You can now use: make {all-docs,pdf,html,man,api,update-man}
instead of: make {all-docs,pdf-docs,html-docs,man-docs}
Away is building into separate dirs. This makes make able to actually get
dependencies right, since there are now a collection of 'common' build
rules, some of which have even been moved to use the cmd infrastructure.
To update the man pages there is a new update-man rule. It builds the
manual pages and copies them to their proper place under man/ while doing
the final preformatting.
As good thing is that the (two) man pages are moved to .txt files and
include the generated content.
The API building thing is also refined. It builds into api/ and builds it's
list of files dynamically by searching throught the .h files in the src/
directory. Documented header files must contain a comment like this:
/* API Doc :: <api-name> */
where <api-name> is the name used for the file under api/, for example
dom-scanner.
2006-01-11 05:02:43 -05:00
.SS "MENU ACTIONS"
2008-03-08 07:53:56 -05:00
.PP
2005-09-15 09:58:31 -04:00
cancel
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Cancel current state\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
delete
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Delete character under cursor\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
down
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move cursor downwards\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
end
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Go to the end of the page/line\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
enter
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Follow the current link\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
expand
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Expand item\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
home
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Go to the start of the page/line\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
left
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move the cursor left\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
mark\- item
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Mark item\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
next\- item
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move to the next item\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
page\- down
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move downwards by a page\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
page\- up
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move upwards by a page\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
previous\- item
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move to the previous item\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
redraw
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Redraw the terminal\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
right
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move the cursor right\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
search
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Search for a text pattern\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
select
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Select current highlighted item\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
unexpand
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Collapse item\& .
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
up
2008-03-08 07:53:56 -05:00
.RS 4
2008-09-27 08:51:02 -04:00
Move cursor upwards\& .
2008-03-08 07:53:56 -05:00
.RE
2005-09-15 09:58:31 -04:00
.SH "DEFAULT BINDINGS"
2008-09-27 08:51:02 -04:00
The default bindings are shown below\& . Any bindings in ~/\& .elinks/elinks\& .conf will override these\& .
2008-03-08 07:53:56 -05:00
.sp
2005-09-15 09:58:31 -04:00
.SS "MAIN KEYS"
2008-03-08 07:53:56 -05:00
.PP
2005-09-15 09:58:31 -04:00
\fI Space\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move downwards by a page (\fI move\- page\- down\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "#"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Search link text by typing ahead (\fI search\- typeahead\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "%"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Toggle usage of document specific colors (\fI toggle\- document\- colors\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "*"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Toggle displaying of links to images (\fI toggle\- display\- images\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI ","\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open a Lua console (\fI lua\- console\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2008-09-27 08:51:02 -04:00
\fI "\& ."\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Toggle displaying of links numbers (\fI toggle\- numbered\- links\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "/"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Search for a text pattern (\fI search\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI ":"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Enter ex\- mode (command line) (\fI exmode\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "<"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Previous tab (\fI tab\- prev\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Alt\- "<"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move the current tab to the left (\fI tab\- move\- left\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "="\fR
.RS 4
2005-09-15 09:58:31 -04:00
Show information about the current page (\fI document\- info\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI ">"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Next tab (\fI tab\- next\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Alt\- ">"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move the current tab to the right (\fI tab\- move\- right\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "?"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Search backwards for a text pattern (\fI search\- back\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "A"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Add a new bookmark using current link (\fI add\- bookmark\- link\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "A"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move to the start of the document (\fI move\- document\- start\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "B"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move upwards by a page (\fI move\- page\- up\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "C"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open cache manager (\fI cache\- manager\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "D"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open download manager (\fI download\- manager\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "E"\fR
.RS 4
2007-01-06 16:46:35 -05:00
Open "Go to URL" dialog box containing the current link URL (\fI goto\- url\- current\- link\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "E"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move to the end of the document (\fI move\- document\- end\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "F"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open form history manager (\fI formhist\- manager\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "F"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move downwards by a page (\fI move\- page\- down\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "G"\fR
.RS 4
2007-01-06 16:46:35 -05:00
Open "Go to URL" dialog box containing the current URL (\fI goto\- url\- current\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "H"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Go to the homepage (\fI goto\- url\- home\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "K"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open cookie manager (\fI cookie\- manager\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "K"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Reload cookies file (\fI cookies\- load\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "L"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open the link context menu (\fI link\- menu\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "L"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Redraw the terminal (\fI redraw\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "N"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Find the previous occurrence of the current search text (\fI find\- next\- back\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "N"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Scroll down (\fI scroll\- down\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "P"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Scroll up (\fI scroll\- up\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "Q"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Quit without confirmation (\fI really\- quit\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "R"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Reload the current page (\fI reload\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "T"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open the current link in a new tab in the background (\fI open\- link\- in\- new\- tab\- in\- background\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "W"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Toggle wrapping of text (\fI toggle\- wrap\- text\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "["\fR
.RS 4
2005-09-15 09:58:31 -04:00
Scroll left (\fI scroll\- left\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2008-09-27 08:51:02 -04:00
\fI "\' "\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Go at a specified mark (\fI mark\- goto\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "\e "\fR
.RS 4
2005-09-15 09:58:31 -04:00
Toggle rendering page as HTML / plain text (\fI toggle\- html\- plain\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "]"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Scroll right (\fI scroll\- right\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "a"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Add a new bookmark (\fI add\- bookmark\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "b"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move upwards by a page (\fI move\- page\- up\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "c"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Close tab (\fI tab\- close\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "d"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Download the current link (\fI link\- download\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "e"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open the tab menu (\fI tab\- menu\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "f"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Maximize the current frame (\fI frame\- maximize\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "g"\fR
.RS 4
2007-01-06 16:46:35 -05:00
Open "Go to URL" dialog box (\fI goto\- url\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "h"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open history manager (\fI history\- manager\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "k"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open keybinding manager (\fI keybinding\- manager\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "l"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Jump to link (\fI jump\- to\- link\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "m"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Set a mark (\fI mark\- set\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "n"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Find the next occurrence of the current search text (\fI find\- next\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "o"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open options manager (\fI options\- manager\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "q"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open a quit confirmation dialog box (\fI quit\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "r"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Attempt to resume download of the current link (\fI link\- download\- resume\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "s"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open bookmark manager (\fI bookmark\- manager\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "t"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open a new tab (\fI open\- new\- tab\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "u"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Go forward in history (\fI history\- move\- forward\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "v"\fR
.RS 4
2005-09-15 09:58:31 -04:00
View the current image (\fI view\- image\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "x"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Follow the current link, forcing reload of the target (\fI link\- follow\- reload\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "z"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Abort connection (\fI abort\- connection\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "{"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Scroll left (\fI scroll\- left\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "|"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Show information about the current page protocol headers (\fI header\- info\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "}"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Scroll right (\fI scroll\- right\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2006-06-12 16:30:42 -04:00
\fI Backspace\fR
2008-03-08 07:53:56 -05:00
.RS 4
2006-06-12 16:30:42 -04:00
Backspace the last entered digit of the current prefix (\fI backspace\- prefix\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Delete\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Scroll down (\fI scroll\- down\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Down\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move to the next link (\fI move\- link\- next\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI End\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move to the end of the document (\fI move\- document\- end\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Enter\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Follow the current link (\fI link\- follow\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Ctrl\- Enter\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Follow the current link, forcing reload of the target (\fI link\- follow\- reload\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Escape\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Activate the menu (\fI menu\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI F10\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Open the File menu (\fI file\- menu\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI F9\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Activate the menu (\fI menu\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Home\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move to the start of the document (\fI move\- document\- start\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Insert\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Scroll up (\fI scroll\- up\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Ctrl\- Insert\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Copy text to clipboard (\fI copy\- clipboard\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Left\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Return to the previous document in history (\fI history\- move\- back\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI PageDown\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move downwards by a page (\fI move\- page\- down\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI PageUp\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move upwards by a page (\fI move\- page\- up\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Right\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Follow the current link (\fI link\- follow\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Ctrl\- Right\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Follow the current link, forcing reload of the target (\fI link\- follow\- reload\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Tab\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move to the next frame (\fI frame\- next\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Alt\- Tab\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move to the previous frame (\fI frame\- prev\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Shift\- Tab\fR
.RS 4
2007-01-06 16:46:35 -05:00
Move to the previous frame (\fI frame\- prev\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Up\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move to the previous link (\fI move\- link\- prev\fR )
2008-03-08 07:53:56 -05:00
.RE
2005-09-15 09:58:31 -04:00
.SS "EDIT KEYS"
2008-03-08 07:53:56 -05:00
.PP
\fI Alt\- "<"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Go to the first line of the buffer (\fI beginning\- of\- buffer\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Alt\- ">"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Go to the last line of the buffer (\fI end\- of\- buffer\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "A"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Go to the start of the page/line (\fI home\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Alt\- "b"\fR
.RS 4
2007-01-06 16:46:35 -05:00
Move cursor before current word (\fI move\- backward\- word\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "D"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Delete character under cursor (\fI delete\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "E"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Go to the end of the page/line (\fI end\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Alt\- "f"\fR
.RS 4
2007-01-06 16:46:35 -05:00
Move cursor after current word (\fI move\- forward\- word\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "H"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Delete character in front of the cursor (\fI backspace\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "K"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Delete to end of line (\fI kill\- to\- eol\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "L"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Redraw the terminal (\fI redraw\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Alt\- "r"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Toggle regex matching (type\- ahead searching) (\fI search\- toggle\- regex\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "F"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Attempt to auto\- complete a local file (\fI auto\- complete\- file\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "R"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Attempt to unambiguously auto\- complete the input (\fI auto\- complete\- unambiguous\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "T"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Open in external editor (\fI open\- external\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "U"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Delete to beginning of line (\fI kill\- to\- bol\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "V"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Paste text from the clipboard (\fI paste\- clipboard\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "W"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Attempt to auto\- complete the input (\fI auto\- complete\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "X"\fR
.RS 4
2007-06-21 17:01:04 -04:00
Cut text to clipboard (\fI cut\- clipboard\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2007-01-06 16:46:35 -05:00
\fI Alt\- Backspace\fR
2008-03-08 07:53:56 -05:00
.RS 4
2007-01-06 16:46:35 -05:00
Delete backwards to start of word (\fI kill\- word\- back\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Backspace\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Delete character in front of the cursor (\fI backspace\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Delete\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Delete character under cursor (\fI delete\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Down\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move cursor downwards (\fI down\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI End\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Go to the end of the page/line (\fI end\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Enter\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Follow the current link (\fI enter\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Escape\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Cancel current state (\fI cancel\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI F4\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Open in external editor (\fI open\- external\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Home\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Go to the start of the page/line (\fI home\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Ctrl\- Insert\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Copy text to clipboard (\fI copy\- clipboard\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Left\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move the cursor left (\fI left\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Right\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move the cursor right (\fI right\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Tab\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move to the next item (\fI next\- item\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Alt\- Tab\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move to the previous item (\fI previous\- item\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Shift\- Tab\fR
.RS 4
2007-01-06 16:46:35 -05:00
Move to the previous item (\fI previous\- item\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Up\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move cursor upwards (\fI up\fR )
2008-03-08 07:53:56 -05:00
.RE
2005-09-15 09:58:31 -04:00
.SS "MENU KEYS"
2008-03-08 07:53:56 -05:00
.PP
2005-09-15 09:58:31 -04:00
\fI Space\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Select current highlighted item (\fI select\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "*"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Mark item (\fI mark\- item\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "+"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Expand item (\fI expand\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "\- "\fR
.RS 4
2005-09-15 09:58:31 -04:00
Collapse item (\fI unexpand\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "/"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Search for a text pattern (\fI search\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "="\fR
.RS 4
2005-09-15 09:58:31 -04:00
Expand item (\fI expand\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "A"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Go to the start of the page/line (\fI home\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "B"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move upwards by a page (\fI page\- up\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "E"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Go to the end of the page/line (\fI end\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "F"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move downwards by a page (\fI page\- down\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "L"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Redraw the terminal (\fI redraw\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "N"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move cursor downwards (\fI down\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "P"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move cursor upwards (\fI up\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Alt\- "V"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move upwards by a page (\fI page\- up\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Ctrl\- "V"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Move downwards by a page (\fI page\- down\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "["\fR
.RS 4
2005-09-15 09:58:31 -04:00
Expand item (\fI expand\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "]"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Collapse item (\fI unexpand\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI "_"\fR
.RS 4
2005-09-15 09:58:31 -04:00
Collapse item (\fI unexpand\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Delete\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Delete character under cursor (\fI delete\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Down\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move cursor downwards (\fI down\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI End\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Go to the end of the page/line (\fI end\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Enter\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Follow the current link (\fI enter\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Escape\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Cancel current state (\fI cancel\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Home\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Go to the start of the page/line (\fI home\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Insert\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Mark item (\fI mark\- item\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Left\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move the cursor left (\fI left\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI PageDown\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move downwards by a page (\fI page\- down\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI PageUp\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move upwards by a page (\fI page\- up\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Right\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move the cursor right (\fI right\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Tab\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move to the next item (\fI next\- item\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Alt\- Tab\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move to the previous item (\fI previous\- item\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
\fI Shift\- Tab\fR
.RS 4
2007-01-06 16:46:35 -05:00
Move to the previous item (\fI previous\- item\fR )
2008-03-08 07:53:56 -05:00
.RE
.PP
2005-09-15 09:58:31 -04:00
\fI Up\fR
2008-03-08 07:53:56 -05:00
.RS 4
2005-09-15 09:58:31 -04:00
Move cursor upwards (\fI up\fR )
2008-03-08 07:53:56 -05:00
.RE
2005-09-15 09:58:31 -04:00
.SH "AUTHOR"
2008-09-27 08:51:02 -04:00
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\& .
2008-03-08 07:53:56 -05:00
.sp
2005-09-15 09:58:31 -04:00
.SH "SEE ALSO"
2008-03-08 07:53:56 -05:00
\fB elinks\fR (1), \fB elinks.conf\fR (5)
.sp