I want use "Clipboard SET text1\ntext2" to copy as:
text1
text2
but the result in clipboard will be "text1\ntext2", without line-wrap.
I want use "Clipboard SET text1\ntext2" to copy as:
text1
text2
but the result in clipboard will be "text1\ntext2", without line-wrap.
Clipboard SET {="text1" + CRLF + "text2"=}
or
Clipboard SET text1{=CRLF=}text2
Thank you for help !