When I want to comment or comment my code out with the shortcut ctrl
+ /
, IntelliJ puts the //
at the first column instead of the current. How can I make comments at the current?
Example
System.out.println(set.containsAll(subSet));
// System.out.println(set.containsAll(subSet));
Using ctrl
+ /
, I would like to make it like that
//System.out.println(set.containsAll(subSet));