'IntelliJ shortcut to comment line
There is a way in webstorm to comment or uncomment a specific line or selected block of source code with shortcut? I try to use CTRL + / but doesn't work for me
Solution 1:[1]
References
https://www.jetbrains.com/help/idea/mastering-keyboard-shortcuts.html
Try to use Ctrl+Slash or Ctrl+Shift+Slash for block comment
If this doesn't work show in your Setting -> Keymap -> Search comment
Solution 2:[2]
Use CTRL+/, but with the / located on the numpad.
The question remains why commenting with / (the one besides .) does not work (it does not for me, either).
Solution 3:[3]
- Ctrl + / ==> To comment/uncomment a line .
- Ctrl + Shift + / ==> To comment/uncomment block of code.
- Ctrl + Y ==> To delete a line.
Solution 4:[4]
On a Mac with an extra keyboard it is CMD + Numpad's /.
The one on the native Macbook keyboard I did not get to work.
Check this post as well: Intellij comment shortcut opens help tab on the Mac menu bar
Solution 5:[5]
@Note Shortcut IntelliJ IDEA
- Ctrl + / => comment or uncomment a line ->
//
- Ctrl + shift + / => comment or uncomment block of code ->
/**/
- Ctrl + y => delete a line
- Ctrl + d => duplicate a line
Solution 6:[6]
If Ctrl + Shift + / doesn't work , try Ctrl + Shift + Num Pad /. You can check the exact configuration in settings->keymap.
Solution 7:[7]
On Windows with a German keyboard layoout the default keyboard shortcut for the comment lines action Ctrl+/
conflicts with the bookmark shortcut Ctrl+7
. You need to remove the keyboard shortcut for bookmarks in order to get this to work.
Solution 8:[8]
Commenting out each line of selected code for Mac users without numpad would have to add a keyboard shortcut:
- Navigate to settings: Preferences > Keymap > Main menu > Code
- Double click on
Comment with Line Comment
- Insert your shortcut, for example:
cmd + shift + 7
would be interpreted asshift + cmd + 7
but works the same.
Solution 9:[9]
Solution 10:[10]
I have an AZERTY keypad in French, so this was the answer for me :
Ctrl
+ Shift
+ /
on the numpad
Because /
out of the numpad was detected as :
, even with Caps Lock
on.
You can check how the keystrokes are actually detected by IntelliJ in :
On Windows :
Settings
> Keymap
> click on the icon of Magnifying glass with cubes (tooltip is "Find Actions By Shortcut"). In the little tooltip that opens, you stroke the keys and observe the registered results.
Solution 11:[11]
You need to activate this option:
- 'Settings' > 'Keymap' > 'Use national layouts for shortcuts (requires restart)'
Solution 12:[12]
It is necessary to switch to the English layout
Solution 13:[13]
its possible to use inellij IDEA by the way you customized before with an IDE like VisualStudio Settings -> KeyMap -> Choose your old IDE its a grate! feature life saver :)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow