空白字符
Sublime Text 2的空白字符高亮显示
详情
安装次数
- 总数 6K
- Win 2K
- Mac 3K
- Linux 1K
8月7日 | 8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
README
描述
为Sublime Text 2进行空白字符高亮显示。
允许您
- 突出显示制表符和空格
- 突出显示行结束符
- 在侧边栏显示行结束图标
- 在状态栏显示行结束类型
选项
请参阅Whitespaces.sublime-settings
更改颜色
您可以在主题文件中定义自己的范围,例如
<dict>
<key>name</key>
<string>Whitespaces.space</string>
<key>scope</key>
<string>Whitespaces.space.highlight</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#232323</string>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#ffffff</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Whitespaces.tab</string>
<key>scope</key>
<string>Whitespaces.tab.highlight</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#1c2a2d</string>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#ffffff</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Whitespaces.line_ending</string>
<key>scope</key>
<string>Whitespaces.line_ending.highlight</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#3e1111</string>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#eda24c</string>
</dict>
</dict>