BETH FAQ
--------

An attempt to answer miscellaneous questions about Beth and how to use it.


Q: How can I change the key that does a function?

A. The best way to change a single keybinding is to insert two lines of code in
your .beth file. The first one changes the keybinding and the second one changes
the corresponding menu entry (remember there's one for every keybinding). So,
for example, if you'd rather use M-C-f for visit_file instead of M-C-v, put
these lines in .beth:

	bind $text <Meta-Control-f> [bind all <Meta-Control-v>]
	$menu.file.m entryconfigure "Visit file" -accel M-C-f

Q: But that's just one key. How can I do many keys quickly.
Or how can I implement vi bindings?

Well, there really isn't a better way to do that...other than changing the Beth
code itself.
