VS Code でタブからスペースへの変換係数をカスタマイズするにはどうすればよいですか? 質問する

VS Code でタブからスペースへの変換係数をカスタマイズするにはどうすればよいですか? 質問する

Visual Studio Code を使用するときに、タブからスペースへの変換係数をカスタマイズするにはどうすればよいですか?

たとえば、現在 HTML では を押すごとに 2 つのスペースが生成されますがTAB、TypeScript では 4 つのスペースが生成されます。

ベストアンサー1

デフォルトでは、Visual Studio Code は開いたファイルに応じてインデント オプションを推測しようとします。

を介してインデントの推測をオフにすることができます"editor.detectIndentation": false

Windowsの場合はメニューの「ファイル」「環境設定」→「設定」またはCtrl「+ ,Macの場合はメニューの「コード」 → 「環境設定」 →「設定」または「+」にある次の 3つの設定で簡単にカスタマイズできます。,

// The number of spaces a tab is equal to. This setting is overridden
// based on the file contents when `editor.detectIndentation` is true.
"editor.tabSize": 4,

// Insert spaces when pressing Tab. This setting is overriden
// based on the file contents when `editor.detectIndentation` is true.
"editor.insertSpaces": true,

// When opening a file, `editor.tabSize` and `editor.insertSpaces`
// will be detected based on the file contents. Set to false to keep
// the values you've explicitly set, above.
"editor.detectIndentation": false

おすすめ記事