小编典典

在 Visual Studio Code 中显示空白字符

all

是否可以在 Visual Studio Code 中显示空白字符,如空格字符?

中似乎没有它的选项settings.json(尽管它是 Atom.io 中的一个选项),而且我无法使用 CSS 显示空白字符。


阅读 109

收藏
2022-03-07

共1个答案

小编典典

VS Code 1.6.0 及更高版本

正如下面的aloisdg所提到的,editor.renderWhitespace现在是一个枚举,要么noneboundary要么all。查看所有空格:

"editor.renderWhitespace": "all",

VS Code 1.6.0 之前

在 1.6.0 之前,您必须设置editor.renderWhitespacetrue

"editor.renderWhitespace": true
2022-03-07