$book = '..'?>
include "$book/mh.php"; includeHeader('presec.html', 'mhprof.html'); ?>A number of keystroke bindings, already defined by exmh, invoke different Tcl commands. You can change the bindings and add bindings for new commands via the Bind dialog. Open the dialog from the Commands menu entry under the Bindings menu. The dialog presents two columns of commands and their bindings, plus an area at the top to define a new binding.
Binding Syntax. Here is a brief summary of the Tk bind syntax. To get the complete story, consult the Tk manual page for the bind command. The Tk syntax for the bindings events is:
<modifier-type-detail>In that syntax,
In the example below, after starting wish and typing the bind command, I moved the mouse to the little window. I pressed and held down the left <Shift> key, pressed the <g> key and the <dollar> key, released the <Shift> key, and pressed the <q> key. I moved the mouse back to the shell window and typed <Control-d> to quit wish.
unix$ wish % bind . <Any-Key> {puts stdout "keysym = %K letter = %A"} % keysym = Shift_L letter = keysym = G letter = G keysym = dollar letter = $ keysym = q letter = q CTRL-D unix$includeFooter('$Date: 2006-05-31 15:13:43 -0700 (Wed, 31 May 2006) $', 'OReilly: 1991, 1992, 1995'); ?>