You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Interacting with a 3270 terminal (i.e. through zti) generally requires more than just the normal keys on a modern keyboard. But keys (and key combinations) outside of the normal keys are not consistently mapped by terminals used to run zti. The key codes that zti expects should be documented so that users can configure their terminal emulator to bind the appropriate codes key combinations.
For example:
Intended Key Combination
Expected Code(s)
Action
Shift+Enter
\n
newline
Alt+1
\0331
PA1
Alt+2
\0332
PA2
Alt+3
\0333
PA3
Alt+PgUp
\033\033[5~
Prev Session
Alt+PgDn
\033\033[6~
Next Session
Insert
\033[2~
Toggle mode
There are many others in addition to the ones in the table above. The codes can be determined from zti.py and _termlib.py.
The text was updated successfully, but these errors were encountered:
Interacting with a 3270 terminal (i.e. through
zti
) generally requires more than just the normal keys on a modern keyboard. But keys (and key combinations) outside of the normal keys are not consistently mapped by terminals used to runzti
. The key codes thatzti
expects should be documented so that users can configure their terminal emulator to bind the appropriate codes key combinations.For example:
\n
\0331
\0332
\0333
\033\033[5~
\033\033[6~
\033[2~
There are many others in addition to the ones in the table above. The codes can be determined from
zti.py
and_termlib.py
.The text was updated successfully, but these errors were encountered: