Can we paste lines into visual studio "without carriage return"? -


lets have these lines in editor

int = 10; print(a,b); string b = "hello"; 

so is.. shift 3rd line 2nd position similar

int = 10; string b = "hello"; print(a,b); 

i use ctrl+x or shift + del cut line clipboard. on pasting line @ 2nd position

int = 10; string b = "hello";  print(a,b); 

the blank line @ 3rd line. there way paste without 3rd blank line. or matter easier way move , cut , paste lines. ?

shift+alt+t swaps current line line below it. you'd put caret (or cursor) on second line, use keyboard shortcut swap third line.


Comments

Popular posts from this blog

Cursor error with postgresql, pgpool and php -

delphi - ESC/P programming! -

c++ - error: use of deleted function -