在括号+逗号后使PhpStorm缩进适当的缩进量

时间:2016-12-17 17:37:48

标签: tabs phpstorm newline indentation space

目前,当我有以下内容时(|是光标所在的位置):

  '/about': {
    component: {
        template: '#about-template'
    }
  },|

然后按回车,光标就到了

  '/about': {
    component: {
        template: '#about-template'
    }
  },
    |

但是我希望光标到这里:

  '/about': {
    component: {
        template: '#about-template'
    }
  },
  |

以下是供参考的图片:

too much indent on PhpStorm enter new line

箭头指向我希望新行的缩进开始的位置。

我如何实现这一目标?

1 个答案:

答案 0 :(得分:0)

我将javascript的缩进设为2个空格并修复了问题。这是我的设置错误。缩进先前设置为4个空格,这对我来说是造成问题的。