1. ホーム
  2. visual-studio-code

[解決済み] タブとスペースの変換係数をカスタマイズするにはどうすればよいですか?

2022-01-31 15:44:52

質問事項

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

例えば、現在HTMLでは、1回のプレスで2つのスペースが生成されるようです。 タブ しかし、TypeScriptでは4つ生成されます。

解決方法は?

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

インデントの推測を無効にするには "editor.detectIndentation": false .

の3つの設定により、簡単にカスタマイズすることができます。 Windows メニューの ファイル 環境設定 ユーザー設定 および Mac メニューに コード 環境設定 設定項目 または ⌘, :

// 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