我有一个自定义的Eclipse Java代码格式化程序,它应该在行中的一些字符后打破每一行。但是我没有找到我可以设置的地方,Eclipse应该破坏这条线。如果我有以下代码:
System.out.println("Here is a very long line containing very many characters, but it is only one String (so no +)");
然后Eclipse打破了这样的界限:
System.out.
println("Here is a very long line containing very many characters, but it is only one String (so no +)");
问题:如何让Eclipse在&#39;(&#39;而不是&#39;。&#39;之后)打破代码,如下所示:< / p>
System.out.println(
"Here is a very long line containing very many characters, but it is only one String (so no +)");