
- port this program to other non-intel based machines.



>>>>>from Eero Somebody ;)

- Add page up/down for lists (file, sample etc).  I'm quite fond of these
keys :). 


- Terminal mouse support.  I didn't see descriptions for this in the
terminfo manual, but in the meanwhile you could use codes used by xterm
and linux console: 

- Set mouse click mode on:
	ESC-[-?-9-h
- Set mouse click mode off:
	ESC-[-?-9-l

This will report only mouse button presses, nothing else (there are
modes for getting release and tracking information too).

The terminal will then give following key sequence whenever mouse
button is pressed:
	ESC-[-M-%c-%c-%c

where the parameters are (in this order):
- mouse button: ' ' + {0:left, 1:middle, 2:right (, 3: button release)}
- x position: '!' + x
- y position: '!' + y
(position in characters of course).

That is, a left mouse button to upper left corner would be:
	ESC-[-M- -!-!

If you ask only button presses, not releases, you could ignore
information about which key is pressed and just use the co-ordinates.

(on above key sequences the hyphens are used just to separate the keys
visually)


- A 'buttonbar' like in Midnight Commander on the bottom of the screen
would be nice for funktracker too.  There one would see (and click with
mouse) options for selecting different editors and exiting to previous
level.

