Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stop IntelliJ from wrapping lines

In the JIndent formatter you can add "special" comments that prevent the formatter from processing a group of lines (//J-, //J+, if I remember correctly).

Is there an equivalent for the built-in formatter in IntelliJ IDEA (9.0.3 CE)? I'm normally very anal about my code style :-), but one of my colleagues is writing a chunk of SQL (in Strings) that should not be wrapped.

like image 952
Ralph Avatar asked Jan 29 '26 12:01

Ralph


1 Answers

Please see a reply to How to selectively disable IntelliJ IDEA code formatter with comments?

I believe that it covers this case too. Using external formatter plug-in which supports such feature would be a solution.

like image 61
CrazyCoder Avatar answered Jan 31 '26 01:01

CrazyCoder