This file is indexed.

/usr/share/doc/the/html/app2.html is in the-doc 3.3~b4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
<HTML>
<HEAD><TITLE>THE Reference - Appendix 2 </TITLE></HEAD>
<BODY BGCOLOR="#F1EDD1" LINK = "#0000FF" VLINK = "#FF0022" ALINK = "#808000">
<CENTER> <img WIDTH="64" HEIGHT="64" HSPACE="20" SRC="the64.png" ALT="THE"> </CENTER>
<A NAME="APPENDIX2"></A>
<H2> APPENDIX 2 - KEYBOARD HANDLING IN THE </H2>
<HR>
  This appendix contains information on how THE handles keystrokes in the U*ix environment.  One thing that is consistant with PCs is keyboard handling.  Therefore this explanation is not applicable to the PC arena. <P>
  Keystroke handling is a very complicated business! There are so many layers between the physical keyboard and the application; in this case THE. These layers can be best described with the following diagrams: <P>
<CENTER><TABLE BORDER=1 CELLSPACING=1 CELLPADDING=2>
<TR><TH>Text-mode Version of THE using terminal</TH></TR>
<TR><TD><CENTER><BR>Physical Keyboard<BR>|<BR>|<BR>[terminal emulator]<BR>|<BR>|<BR>Termcap/Terminfo<BR>|<BR>|<BR>Curses<BR>|<BR>|<BR>THE<BR><BR></CENTER></TD></TR>
<TR><TD><CENTER></CENTER></TD></TR></TABLE></CENTER><P>
<CENTER><TABLE BORDER=1 CELLSPACING=1 CELLPADDING=2>
<TR><TH>Text-mode Version of THE using xterm</TH></TR>
<TR><TD><CENTER><BR>Physical Keyboard<BR>|<BR>|<BR>X11 server<BR>[xmodmap]<BR>|<BR>|<BR>xterm<BR>[translations]<BR>|<BR>|<BR>Termcap/Terminfo<BR>|<BR>|<BR>Curses<BR>|<BR>|<BR>THE<BR><BR></CENTER></TD></TR>
<TR><TD><CENTER></CENTER></TD></TR></TABLE></CENTER><P>
<CENTER><TABLE BORDER=1 CELLSPACING=1 CELLPADDING=2>
<TR><TH>X11 Version of THE</TH></TR>
<TR><TD><CENTER><BR>Physical Keyboard<BR>|<BR>|<BR>X11 server<BR>[xmodmap]<BR>|<BR>|<BR>PDCurses<BR>[translations]<BR>|<BR>|<BR>THE<BR><BR></CENTER></TD></TR>
<TR><TD><CENTER></CENTER></TD></TR></TABLE></CENTER><P>
  Each layer is described below <P>
<B> Physical keyboard </B><P>
  Each keyboard is potentially different from every other.  The similarity that they do possess is that when a key is pressed, a unique code is generated. The state of the Shift, Control, Num Lock, Alt modifiers either alter the unique code generated or a separate code is generated to identify to the next layer that the key pressed should be modified. <P>
<B> terminal emulator </B><P>
  This is a required layer if the user is connected to the host via some emulation software. eg a PC connected to a U*ix host requires a terminal emulator of one sort or another. <P>
  The terminal emulator translates the unique codes generated by the keyboard usually into physical escape sequences that are passed to the U*ix shell.  These escape sequences can be seen by running the U*ix command  <I>cat -v</I> .  When you press a key on the keyboard while in  <I>cat -v</I> , the escape sequences that the terminal emulator has generated are displayed. Some systems require the Enter key to be pressed before the escape sequence is displayed.  The term "escape sequence" is used because in most cases, the first character generated is an Escape character (hex 1B).  Following the escape is any number of other characters, which together form a unique sequence of characters. <P>
  When using a terminal directly, firmware on the terminal does the generation of the escape sequences. Some terminals allow the user to specify what escape sequence will be generated when particular keys are pressed. <P>
<B> Termcap/Terminfo </B><P>
  Each terminal that connects to a U*ix host is identified by the value of the TERM environment variable.  The value of TERM is used to setup various settings for the terminal.  These settings are stored in a database; either in a flat file  <I>termcap</I>  or in a compiled format  <I>terminfo</I> . Which one a particular system uses is dependant on the version of the U*ix Operating System being run. <P>
  One of the capabilites of the termcap/terminfo databases is to translate an escape sequence into a keyboard mnemonic that is used by the Curses library functions.  This translation can also be changed by the user. <P>
  An example of this is: <P>
<table width="100%" border="1" cellpadding="4" cellspacing="0" bgcolor="#cccccc"><tr><td><blockquote>
Termcap:  ku=\E[A <BR>
Terminfo: kcuu1=\E[A <BR>
</blockquote></td></tr></table><p>
  This translates the escape sequence ESC [ A into the mnemonic ku or kccu1. <P>
<B> Curses </B><P>
  The Curses library contains definitions of many keys.  These can be seen by looking in the Curses header file; usually /usr/include/curses.h Here you will see defintions like: <P>
<table width="100%" border="1" cellpadding="4" cellspacing="0" bgcolor="#cccccc"><tr><td><blockquote>
#define KEY_UP 0403 /* up arrow key */ <BR>
</blockquote></td></tr></table><p>
<B> THE </B><P>
  As THE is a Curses-based application, it recognises the Curses key definitions defined in curses.h.  As not all escape sequences are usually defined in the Termcap/Terminfo databases, or are defined in curses.h, THE also has special code to decipher other escape sequences. <P>
  When a key is pressed, and is interpreted by THE, the first action is to check if the value passed to THE is a  <I>known</I>  curses key. If it is THE carries out any command associated with the key.  If the value is not a  <I>known</I>  curses key, THE assumes that an escape sequence is forthcoming.  The module getch.c has code for deciphering many escape sequences that are not normally defined in the Termcap/Terminfo database.  Later in this document is a table of escape sequences and its associated curses key. <P>
<B> X11 Server </B><P>
  When THE is run in a X environemnt, the X server acts in a similar way to terminal emulation software.  The principal difference is that there are more layers within the X server.  The translation of physical keyboard codes to an X mnemonic is the first layer.  The code generated is called a keycode.  This keycode is then translated into another higher level mnemonic; a keysym.  The keysym is usually a name that resembles the label on the physical keyboard. <P>
  The X environment provides a mechanism to assign keycodes to keysyms. This is done with the xmodmap command, and any assignment of keycode to keysym is done for all applications within the current X environemnt. <P>
<B> xterm </B><P>
  The xterm program is a terminal emulation program, and as such has many of the properties of the terminal emulator described above. The xterm program takes keysyms from the X11 server and generates escape sequences, which are defined in the xterm entry in the Termcap/ Terminfo database. <P>
  One of the features of xterm is the ability to alter the standard keysym to escape sequence translation.  Surprisingly this is via a feature called  <I>translations</I> .  Not only do these translations enable the user to specify a different escape sequences to be generated, but internal xterm commands can also be assigned.  These are beyond the scope of this description. An example of an xterm translation follows: <P>
<table width="100%" border="1" cellpadding="4" cellspacing="0" bgcolor="#cccccc"><tr><td><blockquote>
*VT100.Translations: #override\n\ <BR>
 &lt;Key&gt;F1: string(0x1b) string("[192z")\n\ <BR>
 &lt;Key&gt;F2: string(0x1b) string("[193z")\n <BR>
</blockquote></td></tr></table><p>
  This specification is typically part of your own $HOME/.Xdefaults file. This file is usually read dynamically by the xterm program on startup. On some systems, the .Xdefaults file is ignored.  To ensure the entries are incorporated into the X server resource database, run the command: <P>
<table width="100%" border="1" cellpadding="4" cellspacing="0" bgcolor="#cccccc"><tr><td><blockquote>
xrdb -merge .Xdefaults <BR>
</blockquote></td></tr></table><p>
  The above example will generate the escape sequence ESC [ 1 9 2 z when the F1 key is pressed.  The trailing "\" is a continuation character. <P>
  So, if you had the above translation in effect, and were running THE in an xterm, and ran the SHOWKEY command, pressing the F1 key would result in THE responding with F11. <P>
<B> PDCurses </B><P>
  The actions performed by PDCurses in the X environment combine the xterm, Termcap/Terminfo and curses actions. This results in fewer layers to be traversed. <P>
  PDCurses takes a keysym from the X server and converts it into a Curses key code.  PDCurses also has the same translation capabilities as does xterm.  The xterm example above would look like: <P>
<table width="100%" border="1" cellpadding="4" cellspacing="0" bgcolor="#cccccc"><tr><td><blockquote>
*the.Translations: #override\n\ <BR>
 &lt;Key&gt;F1: string(0x1b) string("[192z")\n\ <BR>
 &lt;Key&gt;F2: string(0x1b) string("[193z")\n <BR>
</blockquote></td></tr></table><p>
  All the details described in xterm as far as translations are concerned hold for translations in PDCurses. <P>
  Another capability that translations offer is the ability to assign international characters to alphabetic characters, while still having the alphabetic characters available.  For example, the translations below assigns the action of the Shifted Meta key and A, giving a capital A with a grave accent, and the unshifted Meta key and A giving a small A with a grave accent. <P>
<table width="100%" border="1" cellpadding="4" cellspacing="0" bgcolor="#cccccc"><tr><td><blockquote>
*the.Translations: #override\n\ <BR>
!Shift Meta &lt;Key&gt;a: string(0xc0) \n\ <BR>
!Meta &lt;Key&gt;a: string(0xe0) \n <BR>
</blockquote></td></tr></table><p>
  The examples above assume you are using a font with a character set that is compatible with ISO 8859-1. <P>
<B> THE Escape Sequence to Key Name Mapping </B><P>
<CENTER><TABLE BORDER=1 CELLSPACING=1 CELLPADDING=2>
<TR><TH>Escape Sequence</TH><TH>Curses Key</TH><TH>THE Key Name</TH></TR>
<TR><TD>(pre) 1 ~<BR>(pre) 2 ~<BR>(pre) 3 ~<BR>(pre) 4 ~<BR>(pre) 5 ~<BR>(pre) 6 ~<BR>(pre) 1 1 ~<BR>(pre) 1 2 ~<BR>(pre) 1 3 ~<BR>(pre) 1 4 ~<BR>(pre) 1 5 ~<BR>(pre) 1 7 ~<BR>(pre) 1 8 ~<BR>(pre) 1 9 ~<BR>(pre) 2 0 ~<BR>(pre) 2 1 ~<BR>(pre) 2 3 ~<BR>(pre) 2 4 ~<BR>(pre) 2 5 ~<BR>(pre) 2 6 ~<BR>(pre) 2 8 ~<BR>(pre) 2 9 ~<BR>(pre) 3 1 ~<BR>(pre) 3 2 ~<BR>(pre) 3 3 ~<BR>(pre) 3 4 ~<BR>(pre) 3 7 ~<BR>(pre) 3 8 ~<BR>(pre) 3 9 ~<BR>(pre) 4 0 ~<BR>(pre) 4 1 ~<BR>(pre) 4 2 ~<BR>(pre) 4 3 ~<BR>(pre) 4 4 ~<BR>(pre) 4 5 ~<BR>(pre) 4 6 ~<BR>(pre) 4 7 ~<BR>(pre) 4 8 ~<BR>(pre) 4 9 ~<BR>(pre) 5 0 ~<BR>(pre) 5 1 ~<BR>(pre) 5 2 ~<BR>(pre) 5 3 ~<BR>(pre) 5 4 ~<BR>(pre) 5 5 ~<BR>(pre) 5 6 ~<BR>(pre) 5 7 ~<BR>(pre) 5 8 ~<BR>(pre) 5 9 ~<BR>(pre) 6 0 ~<BR>(pre) A<BR>(pre) B<BR>(pre) C<BR>(pre) D<BR>(pre) F<BR>(pre) G<BR>(pre) H<BR>(pre) I<BR>(pre) L<BR>(pre) M<BR>(pre) N<BR>(pre) O<BR>(pre) P<BR>(pre) Q<BR>(pre) R<BR>(pre) S<BR>(pre) T<BR>(pre) U<BR>(pre) V<BR>(pre) W<BR>(pre) X<BR>(pre) Z<BR>(pre) l<BR>(pre) m<BR>(pre) n<BR>(pre) o<BR>(pre) p<BR>(pre) q<BR>(pre) r<BR>(pre) s<BR>(pre) t<BR>(pre) u<BR>(pre) v<BR>(pre) w<BR>(pre) x<BR>(pre) y<BR>(pre) 1 z<BR>(pre) 2 z<BR>(pre) 3 z<BR>(pre) 4 z<BR>(pre) 5 z<BR>(pre) 6 z<BR>(pre) 1 9 5 z<BR>(pre) 2 1 4 z<BR>(pre) 2 1 5 z<BR>(pre) 2 1 6 z<BR>(pre) 2 1 7 z<BR>(pre) 2 1 9 z<BR>(pre) 2 2 0 z<BR>(pre) 2 2 1 z<BR>(pre) 2 2 2 z<BR>(pre) 2 2 4 z<BR>(pre) 2 2 5 z<BR>(pre) 2 2 6 z<BR>(pre) 2 2 7 z<BR>(pre) 2 2 8 z<BR>(pre) 2 2 9 z<BR>(pre) 2 3 0 z<BR>(pre) 2 3 1 z<BR>(pre) 2 3 2 z<BR>(pre) 2 3 3 z<BR>(pre) 2 3 4 z<BR>(pre) 2 3 5 z<BR>(pre) 3 2 4 z<BR>(pre) 3 2 5 z<BR>(pre) 3 2 6 z<BR>(pre) 3 2 7 z<BR>(pre) 3 2 8 z<BR>(pre) 3 2 9 z<BR>(pre) 3 3 0 z<BR>(pre) 3 3 1 z<BR>(pre) 3 3 2 z<BR>(pre) 3 3 3 z<BR>(pre) 3 3 4 z<BR>(pre) 3 3 5 z<BR>(pre) 4 1 4 z<BR>(pre) 4 1 5 z<BR>(pre) 4 1 6 z<BR>(pre) 4 1 7 z<BR>(pre) 4 1 9 z<BR>(pre) 4 2 0 z<BR>(pre) 4 2 1 z<BR>(pre) 4 2 2 z<BR>(pre) 4 2 3 z<BR>(pre) 4 2 4 z<BR>(pre) 4 2 5 z<BR>(pre) 4 2 6 z<BR>(pre) 4 2 7 z<BR>(pre) 4 2 8 z<BR>(pre) 4 2 9 z<BR>(pre) 4 3 0 z<BR>(pre) 4 3 1 z<BR>(pre) 4 3 2 z<BR>(pre) 4 3 3 z<BR>(pre) 4 3 4 z<BR>(pre) 4 3 5 z<BR>(pre) 1 9 2 z<BR>(pre) 1 9 3 z<BR>(pre) 2 9 2 z<BR>(pre) 2 9 3 z<BR>(pre) [ A<BR>(pre) [ B<BR>(pre) [ C<BR>(pre) [ D<BR>(pre) [ E<BR>(pre) 0 q<BR>(pre) 1 q<BR>(pre) 2 q<BR>(pre) 3 q<BR>(pre) 4 q<BR>(pre) 5 q<BR>(pre) 6 q<BR>(pre) 7 q<BR>(pre) 8 q<BR>(pre) 9 q<BR>(pre) 1 0 q<BR>(pre) 1 1 q<BR>(pre) 1 2 q<BR>(pre) 1 3 q<BR>(pre) 1 4 q<BR>(pre) 1 5 q<BR>(pre) 1 6 q<BR>(pre) 1 7 q<BR>(pre) 1 8 q<BR>(pre) 1 9 q<BR>(pre) 2 0 q<BR>(pre) 2 1 q<BR>(pre) 2 2 q<BR>(pre) 2 3 q<BR>(pre) 2 4 q<BR>(pre) 2 5 q<BR>(pre) 2 6 q<BR>(pre) 2 7 q<BR>(pre) 2 8 q<BR>(pre) 2 9 q<BR>(pre) 3 0 q<BR>(pre) 3 1 q<BR>(pre) 3 2 q<BR>(pre) 3 3 q<BR>(pre) 3 4 q<BR>(pre) 3 5 q<BR>(pre) 3 6 q<BR>(pre) 1 3 9 q<BR>(pre) 1 5 0 q<BR>(pre) 1 4 6 q<BR>(pre) 1 5 4 q<BR>ESC P<BR>ESC Q<BR>ESC R<BR>ESC S<BR></TD><TD>KEY_Find<BR>KEY_InsertHere<BR>KEY_Remove<BR>KEY_Select<BR>KEY_PrevScreen<BR>KEY_NextScreen<BR>KEY_F(1)<BR>KEY_F(2)<BR>KEY_F(3)<BR>KEY_F(4)<BR>KEY_F(5)<BR>KEY_F(6)<BR>KEY_F(7)<BR>KEY_F(8)<BR>KEY_F(9)<BR>KEY_F(10)<BR>KEY_F(11)<BR>KEY_F(12)<BR>KEY_F(49)<BR>KEY_F(50)<BR>KEY_F(51)<BR>KEY_F(52)<BR>KEY_F(53)<BR>KEY_F(54)<BR>KEY_F(55)<BR>KEY_F(56)<BR>KEY_F(13)<BR>KEY_F(14)<BR>KEY_F(15)<BR>KEY_F(16)<BR>KEY_F(17)<BR>KEY_F(18)<BR>KEY_F(19)<BR>KEY_F(20)<BR>KEY_F(21)<BR>KEY_F(22)<BR>KEY_F(23)<BR>KEY_F(24)<BR>KEY_F(25)<BR>KEY_F(26)<BR>KEY_F(27)<BR>KEY_F(28)<BR>KEY_F(29)<BR>KEY_F(30)<BR>KEY_F(31)<BR>KEY_F(32)<BR>KEY_F(33)<BR>KEY_F(34)<BR>KEY_F(35)<BR>KEY_F(36)<BR>KEY_UP<BR>KEY_DOWN<BR>KEY_RIGHT<BR>KEY_LEFT<BR>KEY_END<BR>KEY_NextScreen<BR>KEY_HOME<BR>KEY_PrevScreen<BR>KEY_InsertHere<BR>KEY_NUMENTER<BR>KEY_F(2)<BR>KEY_F(3)<BR>KEY_PF1<BR>KEY_PF2<BR>KEY_PF3<BR>KEY_PF4<BR>KEY_F(8)<BR>KEY_F(9)<BR>KEY_F(10)<BR>KEY_F(11)<BR>KEY_F(12)<BR>KEY_BACKTAB<BR>KEY_PadComma<BR>KEY_PadMinus<BR>KEY_PadPeriod<BR>KEY_Pad0<BR>KEY_Pad1<BR>KEY_Pad2<BR>KEY_Pad3<BR>KEY_Pad4<BR>KEY_Pad5<BR>KEY_Pad6<BR>KEY_Pad7<BR>KEY_Pad8<BR>KEY_Pad9<BR>KEY_NUMENTER<BR>KEY_BTAB<BR>KEY_InsertHere<BR>KEY_HOME<BR>KEY_END<BR>KEY_PrevScreen<BR>KEY_NextScreen<BR>KEY_UNDO<BR>KEY_HOME<BR>KEY_UP<BR>KEY_PrevScreen<BR>KEY_LEFT<BR>KEY_RIGHT<BR>KEY_END<BR>KEY_DOWN<BR>KEY_NextScreen<BR>KEY_F(1)<BR>KEY_F(2)<BR>KEY_F(3)<BR>KEY_F(4)<BR>KEY_F(5)<BR>KEY_F(6)<BR>KEY_F(7)<BR>KEY_F(8)<BR>KEY_F(9)<BR>KEY_F(10)<BR>KEY_F(11)<BR>KEY_F(12)<BR>KEY_F(13)<BR>KEY_F(14)<BR>KEY_F(15)<BR>KEY_F(16)<BR>KEY_F(17)<BR>KEY_F(18)<BR>KEY_F(19)<BR>KEY_F(20)<BR>KEY_F(21)<BR>KEY_F(22)<BR>KEY_F(23)<BR>KEY_F(24)<BR>KEY_C_HOME<BR>KEY_C_CURU<BR>KEY_C_PGUP<BR>KEY_C_CURL<BR>KEY_C_CURR<BR>KEY_C_END<BR>KEY_C_CURD<BR>KEY_C_PGDN<BR>KEY_PadComma<BR>KEY_F(25)<BR>KEY_F(26)<BR>KEY_F(27)<BR>KEY_F(28)<BR>KEY_F(29)<BR>KEY_F(30)<BR>KEY_F(31)<BR>KEY_F(32)<BR>KEY_F(33)<BR>KEY_F(34)<BR>KEY_F(35)<BR>KEY_F(36)<BR>KEY_F(49)<BR>KEY_F(50)<BR>KEY_F(57)<BR>KEY_F(58)<BR>KEY_F(1)<BR>KEY_F(2)<BR>KEY_F(3)<BR>KEY_F(4)<BR>KEY_F(5)<BR>KEY_PadComma<BR>KEY_F(1)<BR>KEY_F(2)<BR>KEY_F(3)<BR>KEY_F(4)<BR>KEY_F(5)<BR>KEY_F(6)<BR>KEY_F(7)<BR>KEY_F(8)<BR>KEY_F(9)<BR>KEY_F(10)<BR>KEY_F(11)<BR>KEY_F(12)<BR>KEY_F(13)<BR>KEY_F(14)<BR>KEY_F(15)<BR>KEY_F(16)<BR>KEY_F(17)<BR>KEY_F(18)<BR>KEY_F(19)<BR>KEY_F(20)<BR>KEY_F(21)<BR>KEY_F(22)<BR>KEY_F(23)<BR>KEY_F(24)<BR>KEY_F(25)<BR>KEY_F(26)<BR>KEY_F(27)<BR>KEY_F(28)<BR>KEY_F(29)<BR>KEY_F(30)<BR>KEY_F(31)<BR>KEY_F(32)<BR>KEY_F(33)<BR>KEY_F(34)<BR>KEY_F(35)<BR>KEY_F(36)<BR>KEY_InsertHere<BR>KEY_PrevScreen<BR>KEY_END<BR>KEY_NextScreen<BR>KEY_PF1<BR>KEY_PF2<BR>KEY_PF3<BR>KEY_PF4<BR></TD><TD>FIND<BR>INS<BR>DEL<BR>SELECT<BR>PGUP<BR>PGDN<BR>F1<BR>F2<BR>F3<BR>F4<BR>F5<BR>F6<BR>F7<BR>F8<BR>F9<BR>F10<BR>F11<BR>F12<BR>F13<BR>F14<BR>F15<BR>F16<BR>F17<BR>F18<BR>F19<BR>F20<BR>S-F1<BR>S-F2<BR>S-F3<BR>S-F4<BR>S-F5<BR>S-F6<BR>S-F7<BR>S-F8<BR>S-F9<BR>S-F10<BR>S-F11<BR>S-F12<BR>C-F1<BR>C-F2<BR>C-F3<BR>C-F4<BR>C-F5<BR>C-F6<BR>C-F7<BR>C-F8<BR>C-F9<BR>C-F10<BR>C-F11<BR>C-F12<BR>CURU<BR>CURD<BR>CURR<BR>CURL<BR>END<BR>PGDN<BR>HOME<BR>PGUP<BR>INS<BR>NUMENTER<BR>F2<BR>F3<BR>PF1<BR>PF2<BR>PF3<BR>PF4<BR>F8<BR>F9<BR>F10<BR>F11<BR>F12<BR>S-TAB<BR>COMMA<BR>MINUS<BR>NUMSTOP<BR>NUM0<BR>NUM1<BR>NUM2<BR>NUM3<BR>NUM4<BR>CENTER<BR>NUM6<BR>NUM7<BR>NUM8<BR>NUM9<BR>NUMENTER<BR>S-TAB<BR>INS<BR>HOME<BR>END<BR>PGUP<BR>PGDN<BR>UNDO<BR>HOME<BR>CURU<BR>PGUP<BR>CURL<BR>CURR<BR>END<BR>CURD<BR>PGDN<BR>F1<BR>F2<BR>F3<BR>F4<BR>F5<BR>F6<BR>F7<BR>F8<BR>F9<BR>F10<BR>F11<BR>F12<BR>S-F1<BR>S-F2<BR>S-F3<BR>S-F4<BR>S-F5<BR>S-F6<BR>S-F7<BR>S-F8<BR>S-F9<BR>S-F10<BR>S-F11<BR>S-F12<BR>C-HOME<BR>C-CURU<BR>C-PGUP<BR>C-CURL<BR>C-CURR<BR>C-END<BR>C-CURD<BR>C-PGDN<BR>COMMA<BR>C-F1<BR>C-F2<BR>C-F3<BR>C-F4<BR>C-F5<BR>C-F6<BR>C-F7<BR>C-F8<BR>C-F9<BR>C-F10<BR>C-F11<BR>C-F12<BR>F13<BR>F14<BR>S-F13<BR>S-F14<BR>F1<BR>F2<BR>F3<BR>F4<BR>F5<BR>COMMA<BR>F1<BR>F2<BR>F3<BR>F4<BR>F5<BR>F6<BR>F7<BR>F8<BR>F9<BR>F10<BR>F11<BR>F12<BR>S-F1<BR>S-F2<BR>S-F3<BR>S-F4<BR>S-F5<BR>S-F6<BR>S-F7<BR>S-F8<BR>S-F9<BR>S-F10<BR>S-F11<BR>S-F12<BR>C-F1<BR>C-F2<BR>C-F3<BR>C-F4<BR>C-F5<BR>C-F6<BR>C-F7<BR>C-F8<BR>C-F9<BR>C-F10<BR>C-F11<BR>C-F12<BR>INS<BR>PGUP<BR>END<BR>PGUP<BR>PF1<BR>PF2<BR>PF3<BR>PF4<BR></TD></TR>
<TR><TD></TD><TD></TD><TD></TD></TR></TABLE></CENTER><P>
  Where (pre) is either: <P>
<table width="100%" border="1" cellpadding="4" cellspacing="0" bgcolor="#cccccc"><tr><td><blockquote>
ESC [ - (0x1B 0x5B) or <BR>
ESC O - (0x1B 0x4F) or <BR>
ESC ? - (0x1B 0x3F) or <BR>
CSI   - (0x9B) <BR>
</blockquote></td></tr></table><p>
<HR>
<ADDRESS>
The Hessling Editor is Copyright &copy; <A HREF = "http://www.rexx.org/">Mark Hessling</A>, 1990-2010
&lt;<A HREF = "mailto:mark@rexx.org">mark@rexx.org</A>&gt;
<BR>Generated on: 7 Jul 2010
</ADDRESS><HR>
Return to <A HREF = "index.html#TOC"> Table of Contents </A><BR>
</BODY> </HTML>