如果没有{},则在/之后,VSCode自动缩进(C)。

时间:2018-10-08 15:49:27

标签: c visual-studio-code indentation

我正在使用VSCode,现在在arround论坛上走了一段时间之后,我找不到答案。

我想知道是否有一种在不添加花括号的情况下(如果/在等情况下)自动缩进的方法:

<html>
<body>
<div id="visualization" style="width: 800px; height: 600px"></div>
<script src="https://get.carrotsearch.com/foamtree/demo/carrotsearch.foamtree.js"> 
</script>
<script>
  window.addEventListener("load", function() {
    var foamtree = new CarrotSearchFoamTree({
      id: "visualization",
      dataObject: {
        groups: [
          { label: "Your", weight: 1.0 },
          { label: "First", weight: 3.0 },
          { label: "FoamTree", weight: 2.0 },
          { label: "Visualization", weight: 4.0 }
        ]
      }
    });
  });
</script>

现在我没有任何自动缩进:

if (test)
   test;

我已经尝试了几种设置,即使在不同的OS(Windows / Linux)上也是如此。 谢谢!

1 个答案:

答案 0 :(得分:0)

文件->首选项->设置->编辑器:保存时格式化。

如果这不起作用,则可能没有安装用于VSCode的C / C ++插件。