View whitespace characters
Sublime Text如何显示不可打印的字符(我对SPACE和TAB感兴趣)?
To view whitespace the setting is:
// 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",
You can see it if you go into Preferences->Settings Default. If you edit your user settings (Preferences->Settings - User) and add the line as per below, you should get what you want:
{
"color_scheme": "Packages/Color Scheme - Default/Slush & Poppies.tmTheme",
"font_size": 10,
"draw_white_space": "all"
}
Remember the settings are JSON so no trailing commas.
在选定的文本中,SPACE显示为点(。),TAB显示为破折号( - )。
I use Unicode Character Highlighter
, can show whitespaces and some other special characters.
Add this by, Package Control
Install packages, unicode ...
链接地址: http://www.djcxy.com/p/62368.html上一篇: 在边栏中显示文件导航
下一篇: 查看空白字符