diff options
author | Michael Jennings <mej@kainx.org> | 2002-06-08 15:44:08 +0000 |
---|---|---|
committer | Michael Jennings <mej@kainx.org> | 2002-06-08 15:44:08 +0000 |
commit | 92937f46a7de2720e90c5f22e617b7ce432c0b71 (patch) | |
tree | 4911332e647c9677d0a6d6a71593deb7c763cac5 /doc/escreen.cfg | |
parent | ed14ba8ddea043176bf856a05b98750bc25793ee (diff) | |
download | eterm-92937f46a7de2720e90c5f22e617b7ce432c0b71.tar.gz |
Sat Jun 8 11:41:37 2002 Michael Jennings (mej)
Escreen update with Twin support from Azundris <scream@azundris.com>.
SVN revision: 6307
Diffstat (limited to 'doc/escreen.cfg')
-rw-r--r-- | doc/escreen.cfg | 143 |
1 files changed, 72 insertions, 71 deletions
diff --git a/doc/escreen.cfg b/doc/escreen.cfg index 07655a1..c838da4 100644 --- a/doc/escreen.cfg +++ b/doc/escreen.cfg @@ -11,121 +11,122 @@ # CONTROL VARIETY ############################################################ # ctrl-left -> previous display, ctrl-right -> next display - bind ctrl Left to echo ^Ap - bind ctrl Right to echo ^An + bind ctrl Left to script es_display(prvs) + bind ctrl Right to script es_display(next) - # ctl-pg_up -> previous display, ctl-pg_dn -> next display (Galeon-like) - bind ctrl Prior to echo ^Ap - bind ctrl Next to echo ^An + # ctl-pg_up -> previous display, ctl-pg_dn -> next display((Galeon-like) + bind ctrl Prior to script es_display(prvs) + bind ctrl Next to script es_display(next) # no ctrl-up/down; we shouldn't steal that from the app. # ctl-space -> toggle between last two displays - bind ctrl space to echo ^A^A - - # ctrl-1..ctrl-0 -> display_0..display_9 - bind ctrl 0x31 to echo ^A0 - bind ctrl 0x32 to echo ^A1 - bind ctrl 0x33 to echo ^A2 - bind ctrl 0x34 to echo ^A3 - bind ctrl 0x35 to echo ^A4 - bind ctrl 0x36 to echo ^A5 - bind ctrl 0x37 to echo ^A6 - bind ctrl 0x38 to echo ^A7 - bind ctrl 0x39 to echo ^A8 - bind ctrl 0x30 to echo ^A9 + bind ctrl space to script es_display(toggle) + + # ctrl-1..ctrl-0 -> display0..display9 + bind ctrl 0x31 to script es_display(goto,0) + bind ctrl 0x32 to script es_display(goto,1) + bind ctrl 0x33 to script es_display(goto,2) + bind ctrl 0x34 to script es_display(goto,3) + bind ctrl 0x35 to script es_display(goto,4) + bind ctrl 0x36 to script es_display(goto,5) + bind ctrl 0x37 to script es_display(goto,6) + bind ctrl 0x38 to script es_display(goto,7) + bind ctrl 0x39 to script es_display(goto,8) + bind ctrl 0x30 to script es_display(goto,9) # ALT VARIETY ################################################################ # alt-left -> previous display, alt-right -> next display - bind alt Left to echo ^Ap - bind alt Right to echo ^An + bind alt Left to script es_display(prvs) + bind alt Right to script es_display(next) - # alt-up -> previous region, alt-down -> next region - bind alt Down to echo ^A\t + # alt-up -> previous region, alt-down -> next region (^A\t) + bind alt Up to script es_region(prvs) + bind alt Down to script es_region(next) # alt-pg_up -> previous display, alt-pg_dn -> next display - bind alt Prior to echo ^Ap - bind alt Next to echo ^An + bind alt Prior to script es_display(prvs) + bind alt Next to script es_ display(next) # alt-space -> toggle between last two displays - bind alt space to echo ^A^A - - # alt-1..alt-0 -> display_0..display_9 - bind alt 0x31 to echo ^A0 - bind alt 0x32 to echo ^A1 - bind alt 0x33 to echo ^A2 - bind alt 0x34 to echo ^A3 - bind alt 0x35 to echo ^A4 - bind alt 0x36 to echo ^A5 - bind alt 0x37 to echo ^A6 - bind alt 0x38 to echo ^A7 - bind alt 0x39 to echo ^A8 - bind alt 0x30 to echo ^A9 + bind alt space to script es_display(toggle + + # alt-1..alt-0 -> display(0..display(9 + bind alt 0x31 to script es_display(goto,0) + bind alt 0x32 to script es_display(goto,1) + bind alt 0x33 to script es_display(goto,2) + bind alt 0x34 to script es_display(goto,3) + bind alt 0x35 to script es_display(goto,4) + bind alt 0x36 to script es_display(goto,5) + bind alt 0x37 to script es_display(goto,6) + bind alt 0x38 to script es_display(goto,7) + bind alt 0x39 to script es_display(goto,8) + bind alt 0x30 to script es_display(goto,9) # FUNCTION KEYS ############################################################## - # F1..F10 -> display_0..display_9 - bind F1 to echo ^A0 - bind F2 to echo ^A1 - bind F3 to echo ^A2 - bind F4 to echo ^A3 - bind F5 to echo ^A4 - bind F6 to echo ^A5 - bind F7 to echo ^A6 - bind F8 to echo ^A7 - bind F9 to echo ^A8 - bind F10 to echo ^A9 - - # alt F4 -> close display - bind alt F4 to echo ^Ak + # F1..F10 -> display0..display9 + bind F1 to script es_display(goto,0) + bind F2 to script es_display(goto,1) + bind F3 to script es_display(goto,2) + bind F4 to script es_display(goto,3) + bind F5 to script es_display(goto,4) + bind F6 to script es_display(goto,5) + bind F7 to script es_display(goto,6) + bind F8 to script es_display(goto,7) + bind F9 to script es_display(goto,8) + bind F10 to script es_display(goto,9) + + # alt F4 -> close display (ask for confirmation) + bind alt F4 to script es_display(kill,ask) # MISC STUFF ################################################################# # DISPLAY # alt-n -> new display - bind alt n to echo ^Ac + bind alt n to script es_display(new) # alt-r -> rename display - bind alt r to echo ^AA + bind alt r to script es_display(title) # alt-c -> close display - bind alt c to echo ^Ak + bind alt c to script es_display(kill,ask) # alt-m -> monitor display - bind alt m to echo ^AM + bind alt m to script es_display(monitor) - # alt-b -> backlog - bind alt b to echo ^A^[ + # alt-b -> backlog (^A^[) + bind alt b to script es_display(back) # REGION - # alt-s -> split - bind alt s to echo ^AS + # alt-s -> split (^AS) + bind alt s to script es_region(new) - # alt-u -> unsplit - bind alt u to echo ^AQ + # alt-u -> unsplit (^AQ) + bind alt u to script es_region(full) - # alt-o -> other region - bind alt o to echo ^A^I + # alt-o -> other region (^A^I) + bind alt o to script es_region(next) - # alt-k -> kill region - bind alt k to echo ^AX + # alt-k -> kill region (^AX) + bind alt k to script es_region(kill,ask) - # ^Tab -> next region - bind ctrl Tab to echo ^A^I + # ^Tab -> next region (^A^I) + bind ctrl Tab to script es_region(next) # OTHER - # alt-S -> statement - bind alt shift S to echo ^A: + # alt-S -> statement (^A:) + bind alt shift S to script es_statement - # alt-R -> reset - bind alt shift R to echo ^AZ + # alt-R -> reset (^AZ) + bind alt shift R to script es_reset |