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)

link|improve this question

I'm not going to do the legwork for you, but you might look into how VsVim implements the J operator to join lines. – Mark Rushakoff Oct 1 '10 at 0:14
feedback

4 Answers

up vote 1 down vote accepted

As I far as I know it does not.

However, you can create and save a new VS macro using the following code:

Sub JoinLines()
    DTE.ActiveDocument.Selection.EndOfLine()
    DTE.ExecuteCommand("Edit.Delete")
    DTE.ActiveDocument.Selection.EndOfLine()
End Sub

and assign a keyboard shortcut to it (like CTRL + j)

This code will join the current line with the one right below it.

link|improve this answer
I think he wants to join with the line below it, meaning that you can probably eliminate the first 2 lines of the macro. – Gabe Oct 1 '10 at 0:11
You're right. Thanks. Now fixed. – Ray Vega Oct 1 '10 at 0:14
Assuming he's asking because he's a vim user, you'd actually want: EndOfLine, delete, insert a space (I think), move left one character. – Noah Richards Oct 1 '10 at 1:08
this looks good - just stuck trying to figure out in VS2010 how to do the keyboard assignment to the JoinLines Sub method... – Greg Oct 1 '10 at 10:42
@Greg- Tools -> Options -> Environment -> Keyboard. In text field for Show commands containing:, simply type JoinLines and your new macro should display. Then in Press shortcut keys, type Ctrl + j, click Assign, and finally OK. It should work after that. – Ray Vega Oct 1 '10 at 16:01
show 1 more comment
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:

Sub JoinLines()
    Dim textSelection As TextSelection = DTE.ActiveDocument.Selection
    With textSelection
        .EndOfLine()
        .Insert(" ")
        .Delete(1)
    End With
End Sub

Just assign it to something like Alt + J (as Ctrl + J and Ctrl + Shift + J are taken).

link|improve this answer
feedback

What do you mean? Deleting at lines' beginning/end will join two lines. What are you thinking of doing?

link|improve this answer
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) – Greg Sep 30 '10 at 23:43
3  
@Greg- It appears your three identical comments need to be merged not joined. :-) – Ray Vega Sep 30 '10 at 23:46
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)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.