Reputation: 10592
I did a ctrl K + ctrl C (adds //
to a line) on a lot of lines of code that I need uncommented. What is the quick key method to uncomment code in Visual studio?
Upvotes: 71
Views: 176694
Reputation: 1
Upvotes: 0
Reputation: 103
Windows: Shift+Alt+A is a toggle. Simply choose your lines of code you want to comment out then Shift+Alt+A, then simply choose your lines of code you want uncomment and then Shift+Alt+A.
Upvotes: -1
Reputation: 1261
Ctrl + K, Ctrl + U.
There is also a button for it on the Standard toolbar.
Upvotes: 7
Reputation: 21
I have the german keyboardlayout. VSCode-x64-1.52.1 To leave a comment: You have to highlight the code, then push Ctrl + # or Ctrl+K, stay at Ctrl and push C
to commen out: Ctrl + #, it toggles on/off the comment or Ctrl + K, stay at Ctrl and push U
Upvotes: 1
Reputation: 385
Ctrl + K + C (to comment) and Ctrl + k + U (to uncomment the code)
Or
or use Ctrl + / (for the same)
Upvotes: 4
Reputation: 21
Ctrl + Q alternates between comment and uncomment. Unfortunately Ctrl K Ctrl U does not work in few environments, rather it adds instead of removing. My case on windows, using composer file I faced Ctrl K Ctrl U not working. I m using VS Code, ver 1.36.1
links to all keys short cuts: https://code.visualstudio.com/docs/getstarted/keybindings
Upvotes: 0
Reputation: 11
Just wanted to add, that in the latest version of VS, ctrl + u
makes it caps. They instead made it a toggle command, so it is actually just ctrl + k
again to make it uncommented.
Upvotes: 1
Reputation: 1071
Mine was a bit different. It is ctrl-shift-C to comment and ctrl-shift-alt-C to uncomment.
I am using Visual Studio Community 2017.
Upvotes: 0
Reputation: 1955
If you're using Resharper, there is a much nicer alternative:
just
right Alt + /
for both
By using this single shortcut, you can simply toggle between commenting/uncommenting code, without having to remember/switch between two shortcuts for each.
Upvotes: 3