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


当前回答

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

其他回答

这里有一个官方教程,教你如何做到这一点! 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,所以后面没有逗号。

http://sublimetexttips.com/show-whitespace-sublime-text/

开放

Ctrl + Shift + P

搜索

首选项:设置—>用户

只需粘贴下面的代码

{ “draw_white_space”:“所有”, “translate_tabs_to_spaces”:真的 }

打开参数设置(Command+,) 添加 “draw_white_space”:“添加”

我知道这是一个老线程,但我喜欢我自己的插件,可以通过一个快捷键循环空格模式(none, selection, and all)。它还在View | Whitespace菜单下提供菜单项。

希望人们会发现这个有用-它被很多人使用:)