Open stsp opened 8 months ago
Can use middle mouse button for pasting.
Or not, as the clipboard rarely contains the command.com's commands to paste into a cmd buffer. It might be better to implement something like "toclip" tool inside comcom64.
Clipboard support won't be of much use if the DOS output is LF terminated. Is there a way to get write(STDOUT_FILENO,...)
to convert LF -> CRLF or do I need to include my toclip code? Seems that read(STDIN_FILENO...)
is already performing CRLF->LF so I don't need to do that.
I have simple code done. How much of toclip should I implement?
Hmm I suspect this should be implemented in dosemu2, not here, to match windows behavior.
I have simple code done. How much of toclip should I implement?
Read and write, not much.
Added crlf conversion, please test.
Can use middle mouse button for pasting.