如何更改VSCode上的JavaScript缩进?

时间:2018-08-15 07:29:58

标签: visual-studio-code indentation vscode-settings auto-indent

我想像这样缩进。 (数组不在一行上列出,而是在两行上列出。)

enter image description here

但是在我的VSCode中,它不像下面的图片那样缩进。

enter image description here

如何设置?语言是JavaScript。

2 个答案:

答案 0 :(得分:0)

转到用户设置(按Ctrl + ,)并搜索editor.wrappingIndent。将值更改为indentdeepIndent

答案 1 :(得分:0)

要使wrappingIndent工作, 我们需要为wordWrap提供以下值之一:

"editor.wordWrap": "on",
"editor.wrappingIndent": "deepIndent"

OR

"editor.wordWrap": "bounded",
"editor.wrappingIndent": "deepIndent"

OR

"editor.wordWrap": "wordWrapColumn",
"editor.wrappingIndent": "deepIndent"