How can I make CTRL + / toggle a comment in Visual Studio, as it does with XCode and Eclipse?
11 Answers
You can't make it toggle without going into either a macro or other VS extension.
However, I always setup VS to comment with Ctrl + / and uncomment to Ctrl + Shift + /
You can customize the keyboard shortcuts by going int the "Tools" menu and selecting "Options". Then select "Keyboard" from the "Environment" branch. From there you can bind the Edit.CommentSelection and Edit.UncommentSelection commands to whichever keyboard shortcuts you'd like.
- 62,847
- 18
- 155
- 177
-
This should be the accepted answer, and still works in Aug 2020 – olonge Aug 29 '20 at 20:18
Here is a plugin to have the almighty "Toggle Comment" command...
1- Download and Install > https://marketplace.visualstudio.com/items?itemName=munyabe.ToggleComment
2- Restart VS
3- Go to "Tools > Options... > Environment > Keyboard"
4- Search for the command "ToggleComment" & Bind it to your favorite key
5- Enjoy
(Thank you, I had gave up but finally found this easy way to do it ;D)
- 581
- 5
- 3
-
2
-
10The secret to making this work was selecting `TextEditor` rather than `global` before pressing `Assign`. – Gulzar Jul 16 '20 at 12:53
-
-
Toggle single line comment and toggle block comment commands have been added in VS 2019 for C#
You can change the shortcut for these commands to whatever you want in Tools -> Options -> Environment -> Keyboard, search for Edit.ToggleBlockComment or Edit.ToggleLineComment.
- 526
- 5
- 4
-
5Oddly, they do not work, not even the defaults, in VS 16.2.2. The error "`The key combination (Ctrl-K, Ctrl-/) is bound to command (Toggle Line Comment) which is not currently available.`" appears at the bottom in the status bar for the default keystrokes, and it doesn't even do that much if you use a custom one. For now, I'll be giving the "Toggle Comment" plugin a try. – MartyMacGyver Aug 19 '19 at 06:03
-
1This did work for me and if you have VS 2019 is the best solution, actually, is THE solution. VS 12.2.5 – Norcino Oct 04 '19 at 14:44
-
1
-
1
-
2This still works in VS 2022. It's insane that this isn't a default yet. – JD Byrnes Feb 06 '22 at 06:47
-
1
-
Get this to the top: In C#, Ctrl+k creates breakpoints: breakpoints don't respond to `Edit.ToggleBlockComment` or Ctrl+/. – Wolfpack'08 Sep 01 '22 at 09:51
-
For me VS2022 this method works for any shortcut key I tried EXCEPT for control+/ ... this may be something to do with having resharper installed. – Obbles Oct 06 '22 at 04:17
-
Sorry, an update...setting the shortcut globally was finicky (only worked on some shortcuy combinations). It has to be set on TEXTEDITOR. Then it appears to work on any combination. Nothing to do with resharper. – Obbles Oct 06 '22 at 04:31
-
@MartyMacGyver in `Visual studio 2022` you also need to install the `workload for ASP.net and Webdevelopment` to use those shortcut keys. I've posted an answer about this below. – Maurice Oct 13 '22 at 21:37
If you have ReSharper installed (and using VS without it is/was tedious), you can assign a single key to the command ReSharper.ReSharper_LineComment.
For instance, I bind the keyboard shortcut Ctrl-K, Ctrl-C to the command, and then if I use it on a line that is uncommented, it comments it, and if the line is commented, it will uncomment it.

- 431
- 1
- 5
- 7
-
4so to directly answer the original question, assign `CTRL + /` to `ReSharper.ReSharper_LineComment` – Chin Mar 09 '16 at 01:59
-
You can also create custom shortcuts using above procedure by placing keys inside 'Press shortcuts keys', step by step procedure here: https://qawithexperts.com/article/c-sharp/useful-visual-studio-shortcuts-comment-remove-comment-collap/309 – Vikas Lalwani Jul 31 '21 at 08:41
Apparently, VS2019 has finally introduced alternative keyboard mapping schemes.
They're available at Options -> Environment -> Keyboard.
I've been looking for a solution for toggle comment shortcut problem and I got a whole surprise package. This is more than I wanted.

-
The Visual Studio Code mappings are indeed the best way to go about this! – Chris Dec 11 '22 at 08:03
Ctrl-K and Ctrl-C will comment one or more selected lines.
Ctrl-K and Ctrl-U will uncomment one or more selected lines.
You can get toolbar icons that will do this by adding the "Text Editor" toolbar. In the toolbar area right-click and select "Text Editor" This will add a strip of icon buttons like this:

You can customize this strip by selecting the dropdown at the end of the ribbon:

To edit the keyboard combination go to Tools-Options and select Keyboard under the Environment tree. Here you can change the keys used to trigger the Comment and Uncomment actions:

- 10,540
- 12
- 40
- 68
-
-
-
Edit.CommentSelection doesn't show up in VisualStudio 2015 community edition. – allan ruin Jul 30 '15 at 14:53
If you're using Resharper, there is an almost identical alternative:
Right Alt+/
By using this single shortcut, you can simply toggle between commenting/uncommenting code.
- 26,555
- 15
- 113
- 235
- 121
- 1
- 7
In Visual Studio Code 2019, this can be done by:
- Enter
hotkeysin the IDE search field and clickChange hotkeys and keyboard shortcuts. - In
Show commands containing, search for and selectEditorContextMenus.CodeWindow.GenerateDocumentationComments. - Click
Removeon the right side ofShortcuts for selected command, wherectrl+/is currently selected. - In
Show commands containing, search for and selectEdit.ToggleLineComments. - Click the
Press shortcut keysbox and pressctrl+/. - Click
Assignto assign the new hotkey.
Note that unbinding the already existing function for ctrl + / is necessary for this to work.
- 111
- 1
-
Steps 1-3 are sufficient in latest VS2019, which has `ctrl` + `/` as the Global default for `Edit.ToggleLineComments`. – victorlin Nov 18 '20 at 15:56
-
In Visual studio 2022 you also need to install the workload for ASP.NET and webdevelopment if you want to use the shortcut for Edit.ToggleBlockComment, as is explained here. If this workload is not installed then pressing CTRL + K will generate an error message in the bottom left of the IDE that says something like The key combination (Ctrl-K, ....) is bound to command (....) which is not currently available.
You can search for the required workload by entering web workload in the searchbar at the top of the IDE. The workload should pop up as a search suggestion. To install this workload you need 2 GB of free diskspace on your computer. Alternatively you can also install the workload with the Visual studio installer app. You can easily find and open this app using the search bar of windows. Once the app has started click on Modify. Then under the tab Workloads select the workload ASP.net and web development and press Modify in the bottom right. Visual studio needs to be closed before you can start the workload installation.
When you've installed the workload for webdevelopment in ASP.NET, Javascript/HTML the shortcuts should work. You can change the shortcut of Edit.ToggleBlockComment to CTRL + / by going to Tools > Options > Environment > Keyboard where you can assign the shortcut. You can leave the Use new shortcut in field on Global. After that you can use CTRL+/ to both comment as well as uncomment a line of code.
- 123
- 6
I don't know if it is the same in 2012 but in 2015 you can.
Go to Tools > Options > Environment > Keyboard
Either, find "VisualD.ToggleCommentSelection" or
Search for "comment" and the bottom option should be "VisualD.ToggleCommentSelection"
- 103
- 2