Visual Studio Codeの自分用設定をメモります。
なお、設定は、
[File]→[Preferences]→[User Settings]で開かれたテキストを編集することで行います。
// Place your settings in this file to overwrite the default settings
{
// Controls the font size.
"editor.fontSize": 15,
// Controls whether the editor should render whitespace characters
"editor.renderWhitespace": true,
// Controls if the editor will insert spaces for tabs. Accepted values: "auto", true, false. If set to "auto", the value will be guessed when a file is opened.
"editor.insertSpaces": false
}
一番、上が、文字サイズの変更。
次が、半角スペースとタブの表示。
次が、タブを半角スペースに変換するのをやめます。