Eclipse has an option that copy-paste of multi-line text into String literals will result in quoted newlines.
Preferences > Java > Editor > Typing > Escape text when pasting into a string literal
Does vscode can do it?
for example
copy bellow and paste:
some text with tabs and new lines
Then eclipse change like this:
"some text\twith tabs\r\n" + "and new \r\n" + "lines"
How can I do it in vscode?