Is there any shortcut to select the current line in Visual Studio?

前端 未结 12 742
予麋鹿
予麋鹿 2020-12-15 03:23

I couldn\'t find such feature in VS\'s shortcut list. Is there anyway?

相关标签:
12条回答
  • 2020-12-15 03:32

    Clicking the line 3 times does the trick

    0 讨论(0)
  • 2020-12-15 03:33

    You can use CTRL + U . This shortcut is use also for uncomment.

    You can change the shortcut on this feature. Go to Tools->Options->Environment->Keyboard->Edit.UncommentSelection and assign CTRL+W (same as Resharper) or you can use what shortcut do you want.

    0 讨论(0)
  • 2020-12-15 03:34

    If you want to select a line or lines you can use the combination of ctrl + E then U. This combination also works for uncommenting a complete line or lines. This combination looks somewhat strange to work with, but it will get habituated very soon :)

    You can also use Ctrl + X to cut an entire line. Similarly, you can use Ctrl + C to copy an entire line. As long as you don't have anything selected, these commands will work on the entire line.

    0 讨论(0)
  • 2020-12-15 03:37

    There is a simple way of doing it, simple use Home or End button to reach the start or end of line, and then use home + shift or end + Shift depending on where your cursor is. Hope it helps.

    0 讨论(0)
  • 2020-12-15 03:42

    If you want to copy a line, simply place cursor somewhere in that line and hit CTRL+C

    To cut an entire line CTRL+X

    @Sean found what I was looking for:

    To disable this default behavior remove the checkmark (or check to re-enable)

    Apply cut or copy commands to blank lines when there is no selection

    Accessed from the menu bar: Tools | Options | Text Editor | All languages

    You can also enter copy into the options search box for quicker access

    [Tested in VS2008, 2010, 2017]

    0 讨论(0)
  • 2020-12-15 03:48

    If you have ReSharper you could use

    Ctrl + W - Extend Selection

    Sidenote: You may have to use it multiple times depending on the context of your present text cursor position.

    0 讨论(0)
提交回复
热议问题