Will Senn writes: > Let me ask you this, if I need to send a form feed or a line feed or > another ascii character that is not given a direct representation (or > the correct representation) by my keyboard, is there a mechanism to > send the keycode directly? For example, linefeed is ASCII decimal > 10. Is there an escape sequence that is equivalent to sending 10 > across (maybe something along the lines of ESC [ 1 0 or something)?
Control-J. For form feed, Ctl-L. In general, you can type Ctl-(letter or @[\]^_) to send the code of the letter & 0x1F. On most terminals, Ctl-^? sends 0x7F, Ctl-/ and Ctl-minus send Ctl-_, and Ctl-2345678 send the same as Ctl-@[\]^_? . _______________________________________________ Simh mailing list [email protected] http://mailman.trailing-edge.com/mailman/listinfo/simh
