<tfoot id='AtPws'></tfoot>

        <small id='AtPws'></small><noframes id='AtPws'>

      1. <legend id='AtPws'><style id='AtPws'><dir id='AtPws'><q id='AtPws'></q></dir></style></legend>
        <i id='AtPws'><tr id='AtPws'><dt id='AtPws'><q id='AtPws'><span id='AtPws'><b id='AtPws'><form id='AtPws'><ins id='AtPws'></ins><ul id='AtPws'></ul><sub id='AtPws'></sub></form><legend id='AtPws'></legend><bdo id='AtPws'><pre id='AtPws'><center id='AtPws'></center></pre></bdo></b><th id='AtPws'></th></span></q></dt></tr></i><div id='AtPws'><tfoot id='AtPws'></tfoot><dl id='AtPws'><fieldset id='AtPws'></fieldset></dl></div>

        • <bdo id='AtPws'></bdo><ul id='AtPws'></ul>
      2. 如何告诉 Eclipse 不格式化代码文件的一部分(按

        时间:2023-09-29
        <legend id='CZzeL'><style id='CZzeL'><dir id='CZzeL'><q id='CZzeL'></q></dir></style></legend>

        1. <tfoot id='CZzeL'></tfoot>

                • <bdo id='CZzeL'></bdo><ul id='CZzeL'></ul>

                  <small id='CZzeL'></small><noframes id='CZzeL'>

                    <tbody id='CZzeL'></tbody>
                  <i id='CZzeL'><tr id='CZzeL'><dt id='CZzeL'><q id='CZzeL'><span id='CZzeL'><b id='CZzeL'><form id='CZzeL'><ins id='CZzeL'></ins><ul id='CZzeL'></ul><sub id='CZzeL'></sub></form><legend id='CZzeL'></legend><bdo id='CZzeL'><pre id='CZzeL'><center id='CZzeL'></center></pre></bdo></b><th id='CZzeL'></th></span></q></dt></tr></i><div id='CZzeL'><tfoot id='CZzeL'></tfoot><dl id='CZzeL'><fieldset id='CZzeL'></fieldset></dl></div>
                • 本文介绍了如何告诉 Eclipse 不格式化代码文件的一部分(按 Strg + Shift + F)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我真的很喜欢 autofromat 功能.我让你的代码更具可读性,如果 JavaScript 会告诉你什么时候出现语法错误(缺少括号等).

                  I really love the autofromat feature. I makes your code more readable and in case of JavaScript tells you, when there are synatcs errors (missing brackets etc.).

                  但有时格式会使代码更难阅读.例如当它将长数组初始化放入一行时.在那种情况下,我不希望他格式化它,而是让它提供多行.例如

                  However sometimes the formatting makes the code harder to read. e.g. when it puts a long array inizalisation into a single line. In that case I don't want him to format it, but rather leave it ofer multiple lines. E.g.

                  define([
                      'jquery', 
                      'aloha', 
                      'aloha/plugin', 
                      'ui/ui', 
                      'ui/scopes', 
                      'ui/button', 
                      'ui/toggleButton', 
                      'ui/port-helper-attribute-field', 
                      'ui/text'
                  // 'css!youtube/css/youtube.css'
                  ], 
                      function(
                          $, 
                          Aloha, 
                          Plugin, 
                          Ui, 
                          Scopes, 
                          Button, 
                          ToggleButton, 
                          AttributeField) 
                          {
                  

                  这个数组应该保持这样,不要变成这样:

                  this array should stay like this and don't become this:

                  define(['jquery', 'aloha', 'aloha/plugin', 'ui/ui', 'ui/scopes', 'ui/button', 'ui/toggleButton', 'ui/port-helper-attribute-field', 'ui/text' ], function($, Aloha, Plugin, Ui, Scopes, Button, ToggleButton, AttributeField) {
                  

                  有没有特殊的标签,告诉eclipse不要格式化代码?

                  Is there a special tag, to tell eclipse not to format the code?

                  推荐答案

                  好的,我花了一些时间才找到正确的设置,所以我将在这里发布一个教程.

                  OK, it took me some time to find the right setting so I will post a toturial here.

                  转到窗口首选项并搜索您正在使用的格式化程序.就我而言,它位于Aptana Studia"->格式化程序"下.(取决于您的包,这会有所不同,例如 Java 格式化程序位于Java"->代码样式"->格式化程序"下).

                  Go to Window Preferences and Search the Formatter you are using. In my case it was under 'Aptana Studia' -> 'Formatter'. (Depending on your Package this differs, e.g. the Java Formatter is under 'Java' -> 'Code Style' -> 'Formater').

                  现在创建一个新的构建配置文件,因为您无法覆盖旧配置文件.

                  Noww create a new Build profile since you can't override the old one.

                  现在启用格式化程序标签.

                  Now enable the Formatter tags.

                  现在你可以使用

                   - @formatter:on
                   - @formatter:off
                  

                  用于禁用代码格式化的标签.

                  tags to disable code formatting.

                  示例:这段代码:

                      function hello() {             return 'hello';
                  }
                  
                  //@formatter:off
                  /*
                     |      _,,,---,,_
                     /,`.-'`'    -.  ;-;;,_
                    |,4-  ) )-,_..; (  `'-'
                   '---''(_/--'  `-'\_)  fL
                  
                   */
                  //@formatter:on
                  
                  function 
                  
                  
                  world() {
                      return 'world';
                  }
                  

                  会被格式化成这样

                  function hello() {
                      return 'hello';
                  }
                  
                  //@formatter:off
                  /*
                     |      _,,,---,,_
                     /,`.-'`'    -.  ;-;;,_
                    |,4-  ) )-,_..; (  `'-'
                   '---''(_/--'  `-'\_)  fL
                  
                   */
                  //@formatter:on
                  
                  function world() {
                      return 'world';
                  }
                  

                  注意函数定义的格式是正确的,而 ascii 艺术不是

                  Note how the function definition is formatted correct, while the ascii art isn't

                  学分:

                  1. Katja Christiansen 发表评论
                  2. https://stackoverflow.com/a/3353765/639035:类似的答案
                  1. Katja Christiansen for his comment
                  2. https://stackoverflow.com/a/3353765/639035 : for a similar answer

                  这篇关于如何告诉 Eclipse 不格式化代码文件的一部分(按 Strg + Shift + F)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Java 格式化:保留行但修复缩进 下一篇:如何在java中将mm/dd/yyyy转换为yyyy-mm-dd

                  相关文章

                  最新文章

                    <bdo id='AG0K4'></bdo><ul id='AG0K4'></ul>

                  <small id='AG0K4'></small><noframes id='AG0K4'>

                    <i id='AG0K4'><tr id='AG0K4'><dt id='AG0K4'><q id='AG0K4'><span id='AG0K4'><b id='AG0K4'><form id='AG0K4'><ins id='AG0K4'></ins><ul id='AG0K4'></ul><sub id='AG0K4'></sub></form><legend id='AG0K4'></legend><bdo id='AG0K4'><pre id='AG0K4'><center id='AG0K4'></center></pre></bdo></b><th id='AG0K4'></th></span></q></dt></tr></i><div id='AG0K4'><tfoot id='AG0K4'></tfoot><dl id='AG0K4'><fieldset id='AG0K4'></fieldset></dl></div>

                    1. <legend id='AG0K4'><style id='AG0K4'><dir id='AG0K4'><q id='AG0K4'></q></dir></style></legend>
                      <tfoot id='AG0K4'></tfoot>