When I use IntelliJ’s function “Comment with Line Comment” it places two slashes at the very beginning of the selected lines. The forward slashes are not indented with the rest of the code. How can I make IntelliJ obey the line indentation when placing the forward slashes?
Example code:
if (something) {
bar();
}
Using IntelliJ’s commenting function on line 2 results in:
if (something) {
// bar();
}
What I want:
if (something) {
// bar();
}
Go to File > Settings > Editor > Code Style > Java > Code Generation
and uncheck the option "Line comment at first column".
Update Oct 2016 from @henrebotha in the comments:
As of now, there's an additional option just beneath it that says "Add a space at comment start", so this is now supported.
You can setup in Code Generation:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With