-
Notifications
You must be signed in to change notification settings - Fork 8.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The copy/paste line wrapping bug is back #3764
Comments
From when I hexdump-ed a repro of this, it looks like on multi-line copy-pastes, instead of inserting a newline at the separation between lines it just adds spaces until the next line begins (as it appears on the screen). Kind of makes sense since the selection is highlighting spaces instead of jumping to the newline. Here's the hexdump of text from the top of a new CMD terminal: |
Say, are you copying with right-click or with the ctrl+c or ctrl+shift+c? |
@DHowett-MSFT it behaves like that with |
@mkitzan, thanks for the tip. I wrote small Python script with Terminal in order to generate some long, repetitive-kind of text, I faced the wrapping bug when I copied text with |
So new release |
Thanks for confirming. |
Environment
Steps to reproduce
Copy some text from the terminal, with multiple lines
Paste that text inside a terminal editor (tested with
nano
)Expected behavior
Copy text in multiple lines, paste the same multiple lines
Actual behavior
The pasted text will be concatenated in 1 line
The text was updated successfully, but these errors were encountered: