Visual Studio Codeで空白文字を表示する 質問する

Visual Studio Codeで空白文字を表示する 質問する

Visual Studio Code でスペース文字などの空白文字を表示することは可能ですか?

にはそのためのオプションがないようです( Atom.iosettings.jsonにはオプションがありますが)。また、CSS を使用して空白文字を表示できませんでした。

ベストアンサー1

VS Code 1.6.0 以降

前述の通り下のaloisdgは、または のeditor.renderWhitespaceいずれかを取る列挙型になりました。すべての空白を表示するには、次のようにしますnoneboundaryall

"editor.renderWhitespace": "all", 

VS Code 1.6.0 以前

1.6.0 より前は、editor.renderWhitespace次のように設定する必要がありましたtrue:

"editor.renderWhitespace": true

おすすめ記事