有没有办法排除html行在vscode中格式化?

时间:2018-01-14 09:56:09

标签: visual-studio-code code-formatting

有没有办法排除html行在vscode中格式化? (我使用更漂亮)例如:我手动格式如下:

<input 
            (keyup.enter)="createPost(title)" 
            #title type="text" 
            class="form-control" />

并将自动重新格式化为:

<input (keyup.enter)="createPost(title)" #title type="text" class="form-control" />

我尝试使用pre,但这不是很方便。

这是我最近的(不舒服)解决方案的例子;

 <style>
    pre {
      white-space: normal;
      padding: 0px;
      margin: 0 0;
      border: 0px;
    }
</style>
<div>
    **<pre>**   
    <input 
        (keyup.enter)="createPost(title)" 
        #title type="text" 
        class="form-control" />
    **</pre>**

    <!-- other HTML to be formatted -->

    <ul class="list-group">
        **<pre>**
            <li  
                class="list-group-item" 
                *ngFor="let item of items">
                <p>{{ item.body }}</p>
            </li>
        **</pre>**
    </ul>
</div>

thanx,dukehh

1 个答案:

答案 0 :(得分:0)

VS Code本身不会执行任何语言的自动格式化。你需要查看你正在使用的扩展,以及它是否能够在保存时禁用自动格式等。