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


当前回答

要查看空格,设置如下:

// 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

要查看空格,设置如下:

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

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

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

开放

Ctrl + Shift + P

搜索

首选项:设置—>用户

只需粘贴下面的代码

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

我有几个插件(包括Unicode字符荧光笔),但唯一一个找到了字符,从我今天隐藏的是荧光笔。

您可以通过粘贴自述文件中的文本来测试它是否正常工作。

作为参考,给我带来麻烦的角色是
。

为了进行完整性检查,在包含不可见字符的文本范围上轻按右箭头键,您需要向右箭头两次才能越过该字符。

我还使用以下自定义正则表达式字符串(我不完全grok):

{
    // there's an extra range in use [^\\x00-\\x7F]
    // also, don't highlight spaces at the end of the line (my settings take care of that)
    "highlighter_regex": "(\t+ +)|( +\t+)|[^\\x00-\\x7F]|[\u2026\u2018\u2019\u201c\u201d\u2013\u2014]"
}