选项卡在Eclipse中打印时对齐包装的代码行?

时间:2016-01-29 15:49:35

标签: eclipse eclipse-plugin

让我说我在Eclipse中打印一些代码。默认情况下,Eclipse在行的开头(第一个示例)打印包裹的行,这可能使代码难以阅读。有没有办法让Eclipse在打印时将包装线与正确的缩进对齐(第二个例子)?

默认Eclipse打印格式

     for (List<String> text in data.rows()){
          if (text =="this string" || text =="that string" || text =="some other
     this string"{//do something }

    }

我可以让Eclipse使用正确的缩进来对齐包裹线吗?

    for (List<String> text in data.rows()){
        if (text =="this string" || text =="that string" || text =="some   other       
        this string"
        {//do something }

    }

1 个答案:

答案 0 :(得分:1)

您可以通过转到Window - &gt; Preferences-&gt; Java-&gt; Code Style-&gt; Formatter,然后在右侧单击“Edit”来让Eclipse格式化您的代码,它将带来如下所示:

enter image description here

您可以使用此设置您的风格。