GemDos System Special Keys
Key |
Translation |
Treated by |
Return |
End of input. The RETURN character (ASCII 13) is not placed in the input buffer. |
Cconrs() |
Control-J |
End of line. The CTRL-J character (ASCII 10) is not placed in the input buffer. |
Cconrs() |
Control-H |
Kill last character. |
Cconrs() |
Delete |
Kill last character. |
Cconrs() |
Control-U |
Echo input line and start over. |
Cconrs() |
Control-X |
Kill input line and start over. |
Cconrs() |
Control-R |
Echo input line and continue. |
Cconrs() |
Control-C |
Exit program. |
Cconrs(), Cconin(), Cnecin() |
To be tested
Return should be the same as Control-M (ASCII 13), Delete should be equivalent to Control-H (ASCII 8), Tab should be the same as Control-I (ASCII 9), etc.