Hi Dean,
> and this has worked well but on the BSDs pgup/pgdown give the same code.
I don't think they have the same code.
Rather, these keys usually generate escape seqences. You can find them out what
they do in the REPL:
: (make (link (key)) (while (key 100) (link @))) # Press PGUP
-> ("^[" "[" "5" "~")
: (make (link (key)) (while (key 100) (link @))) # Press PGDN
-> ("^[" "[" "6" "~")
: (make (link (key)) (while (key 100) (link @))) # Press LEFT
-> ("^[" "[" "D")
Try it! :)
♪♫ Alex
--
UNSUBSCRIBE: mailto:[email protected]?subject=Unsubscribe