崇高的文本如何显示非打印字符(我对空格和制表符感兴趣)?
当前回答
要查看空格,设置如下:
// 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,所以后面没有逗号。
其他回答
要查看空格,设置如下:
// 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,所以后面没有逗号。
如果你真的只想看到后面的空格,这个ST2插件可以做到:https://github.com/SublimeText/TrailingSpaces
如果你想打开和关闭空白的显示,你可以安装HighlightWhitespaces插件
打开参数设置(Command+,) 添加 “draw_white_space”:“添加”
在选定的文本中,空格显示为中间的点(·),Tab显示为长破折号(-)。
推荐文章
- 在Sublime Text 2中限制文件搜索范围
- 如何修复/转换崇高文本的空间缩进?
- 如何使Sublime Text成为Git的默认编辑器?
- 如何在SSH上使用Sublime
- 如何使标尺始终显示在崇高的文本2?
- Sublime Text 2:如何删除空白/空行
- Sublime Text 3中80个字符/右边距
- 如何从Sublime Text 2运行Python代码?
- 如何在Sublime Text 2中用制表符替换四个空格?
- 在Sublime Text 3中搜索一个项目中的所有文件
- 如何在崇高文本中选择所选区域的所有实例
- 用小写字母代替大写字母
- Sublime文本和Github的Atom之间有什么区别
- 什么是PEP8的E128:延续线缩进不足的视觉缩进?
- 我如何在崇高的文本中看到文件的当前编码?