home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.unix.aix
- Path: sparky!uunet!munnari.oz.au!yoyo.aarnet.edu.au!frodo.cc.flinders.edu.au!hobson.cc.flinders.edu.au!mmrw
- From: mmrw@cc.flinders.edu.au (<Rick.Williams>)
- Subject: Re: *xterm function key translations
- Originator: mmrw@hobson.cc.flinders.edu.au
- Message-ID: <1992Nov17.235209.37168@frodo.cc.flinders.edu.au>
- Sender: @frodo.cc.flinders.edu.au
- Date: Tue, 17 Nov 1992 23:52:09 GMT
- Organization: Flinders University
- Lines: 29
-
- Use the -name option of aixterm to give the application a new name:-
- aixterm -name ESQR .... &
-
- Then set up bindings in the .Xdefaults file as per this example
- (Case and punctuation are VERY important):-
-
- ESQR*Translations: #override \
- <Key>Num_Lock: string("^[OP") \n\
- <Key>KP_Divide: string("^[OQ") \n\
- <Key>KP_Multiply: string("^[OR") \n\
- <Key>KP_Subtract: string("^[OS") \n\
- <Key>Home: string("^[h") \n\
- <Key>End: string("^[e") \n\
- <Key>Insert: string("^[i") \n\
- <Key>Delete: string("^X") \n\
- Ctrl<Key>Prior: string("^[u") \n\
- Ctrl<Key>Next: string("^[d") \n\
- <Key>Prior: string("^U") \n\
- <Key>Next: string("^D") \n\
- Shift<Key>Tab: string("^[b") \n\
- Ctrl<Key>Right: string("^R") \n\
- Ctrl<Key>Left: string("^L")
-
-
- Note that the ^[ string should actually be the escape sharacter itself.
- Similarly ^X ^R etc are the actual control characters.
-
- Note also that Modifier<Key>Blah must be specified BEFORE <Key>Blah for both to work.
-
-