代码之家  ›  专栏  ›  技术社区  ›  Matthew Phillips

如何停止IntelliJ Scala插件缩进块

  •  4
  • Matthew Phillips  · 技术社区  · 14 年前

    在带有最新Scala插件的IntelliJ 9.0.2上,问题是代码格式化程序将此转换为:

      object Test
      {
        def main (args: Array[String])
        {
          if (...)
          {
            ...
          }
        }
      }
    

    对此:

      object Test
      {
        def main (args: Array[String])
          {
            if (...)
              {
                ...
              }
          }
      }
    

    这是一件小事,但速度慢得让我抓狂:/

    1 回复  |  直到 14 年前
        1
  •  4
  •   retronym    14 年前