shelfpoy.blogg.se

Visual studio hotkeys for expanding
Visual studio hotkeys for expanding












visual studio hotkeys for expanding

There are many more useful shortcuts, and here are some articles that can help you learning them:ĭefault keyboard shortcuts in Visual Studio Although this functionality is not available through a pre-defined shortcut, you can register one from Tools | Options | Environment | Keyboard. This can be a very helpful feature if you are a C++ developer that adhered to the East const style, and want to change text such as const int a to int const a. You can use SHIFT + ALT + + to increase the selection to the next logical block, and SHIFT + ALT + - to decrease it.Īlthough perhaps not as commonly needed as the previous features, this feature allows to change the order of the two words that follow the cursor. But it’s also possible to use the keyboard for this. It’s possible with the mouse, paying attention to what you select. You may find it is useful to expand selection to the enclosing block.

#VISUAL STUDIO HOTKEYS FOR EXPANDING CODE#

Increasing/decreasing selection of code blocks You can use CTRL + K, CTRL + F to apply formatting to the current selection (according to the settings from Tools | Options | Text Editor). You can move the current line one position down with SHIFT + ALT + T. Sometimes you may need to change the order of some lines (such as the order of some variable declaration, or order of properties defined in a JSON file).

visual studio hotkeys for expanding

  • CTRL + K followed by CTRL + U to uncomment.
  • CTRL + K followed by CTRL + C to comment.
  • It is possible to comment or uncomment the current line or selection with the following key combinations: Īnother way is to insert multiple carets at desired locations by pressing CTRL + ALT and clicking with the mouse cursor.
  • the next match of a token, with SHIFT + ALT +.
  • all matches of a token, with SHIFT + ALT +.
  • One way is to insert a caret automatically to: This is possible by using multiple carets. Sometimes you may need to make similar changes in multiple places. For instance, here is an example with replacing -> with a dot. This is useful when you have code vertically aligned and need to make some repetitive changes. You can perform vertical selection (of columns) by either pressing the ALT key and using the mouse to select, or pressing SHIFT + ALT and using the arrow keys to select.

    visual studio hotkeys for expanding

    In this post, I will share several that I find very useful and I use quite often. The Visual Studio editor has lots of functionalities, many of them available with the use of shortcuts.














    Visual studio hotkeys for expanding