查看空白字符

Sublime Text如何显示不可打印的字符(我对SPACE和TAB感兴趣)?


要查看空白,设置是:

// Set to "none" to turn off drawing white space, "selection" to draw only the
// white space within the selection, and "all" to draw all white space
"draw_white_space": "selection",

如果进入“首选项” - >“设置默认值”,您可以看到它。 如果您编辑您的用户设置(首选项 - >设置 - 用户)并按照以下方式添加该行,则应该得到您想要的内容:

{
    "color_scheme": "Packages/Color Scheme - Default/Slush & Poppies.tmTheme",
    "font_size": 10,
    "draw_white_space": "all"
}

请记住设置是JSON,因此没有尾随逗号。


在选定的文本中,SPACE显示为点(。),TAB显示为破折号( - )。


我使用Unicode Character Highlighter ,可以显示空格和其他特殊字符。

添加这个,包控制

安装软件包,unicode ...

链接地址: http://www.djcxy.com/p/62367.html

上一篇: View whitespace characters

下一篇: Indenting code in Sublime text 2?