If I am sending the escape character to a window programatically, I'd
send {ESC}. If I am reading the characters that I am sending to a
window from a file, what value do I write for {ESC}?
e.g. what code do I write to the file:
to close the APLW editor i.e for {ESC} (single key)
to close the APL+Win editor i.e .for Ctrl + E (combined key)
to close the APLX editor i.e for Ctrl + S + W (multiple
combined key(s))
Programatically, these would be
{ESC}
^S^W (or is it ^SW?)
^E
What are the values of these keys?