是否可以在 Visual Studio Code 中显示空白字符,如空格字符?
中似乎没有它的选项settings.json(尽管它是 Atom.io 中的一个选项),而且我无法使用 CSS 显示空白字符。
settings.json
VS Code 1.6.0 及更高版本
正如下面的aloisdg所提到的,editor.renderWhitespace现在是一个枚举,要么none,boundary要么all。查看所有空格:
editor.renderWhitespace
none
boundary
all
"editor.renderWhitespace": "all",
VS Code 1.6.0 之前
在 1.6.0 之前,您必须设置editor.renderWhitespace为true:
true
"editor.renderWhitespace": true