崇高的文本如何显示非打印字符(我对空格和制表符感兴趣)?


当前回答

我使用Unicode字符高亮显示,可以显示空白和其他一些特殊字符。

将此添加到“包控制”

安装包,unicode…

其他回答

这里有一个官方教程,教你如何做到这一点! http://sublimetexttips.com/show-whitespace-sublime-text/

就像这样!


希望对您有所帮助!

要查看空格,设置如下:

// 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,所以后面没有逗号。

一种“快速而肮脏”的方法是使用find函数并激活正则表达式。

然后搜索: 用于突出显示空格 标签的\t \n表示换行 等。

在选定的文本中,空格显示为中间的点(·),Tab显示为长破折号(-)。

如果你真的只想看到后面的空格,这个ST2插件可以做到:https://github.com/SublimeText/TrailingSpaces