does Visual Studio 2010 not have a "join lines" keyboard shortcut?
EDIT - That is when on line X anywhere, I hit a shortcut key once, and then line X+1 joins to line X (eliminating CR between them so to speak)
|
does Visual Studio 2010 not have a "join lines" keyboard shortcut? EDIT - That is when on line X anywhere, I hit a shortcut key once, and then line X+1 joins to line X (eliminating CR between them so to speak)
| ||||
|
feedback
|
|
As I far as I know it does not. However, you can create and save a new VS macro using the following code:
and assign a keyboard shortcut to it (like CTRL + j) This code will join the current line with the one right below it. | |||||||||||
feedback
|
|
If you want the join feature to act like Vim (pressing Shift + J) then use this macro that joins, inserts space and places cursor after the space:
Just assign it to something like Alt + J (as Ctrl + J and Ctrl + Shift + J are taken). | ||||
|
feedback
|
|
What do you mean? Deleting at lines' beginning/end will join two lines. What are you thinking of doing? | |||||||
feedback
|
|
I use the CodeMaid extension for this, it provides a Ctrl + M Ctrl + J shortcut to join lines (and some other useful things too) | ||||
|
feedback
|
Joperator to join lines. – Mark Rushakoff Oct 1 '10 at 0:14