本文介绍了Sublime 2 - 根据文件类型更改背景颜色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用现有的 Sublime 2 配色方案,有没有办法选择性地调整背景颜色,例如.仅 .js 文件?非常感谢!
Using an existing Sublime 2 color scheme, is there a way to tweak the background color selectively for eg. .js files only?Many thanks!
推荐答案
你必须修改你的 .tmTheme
配色方案 plist
.您可以通过菜单Preferences/Browse Packages...
、Color Scheme - Default
目录找到它.
You have to modify your .tmTheme
color scheme plist
. You can find it with menu Preferences/Browse Packages...
, Color Scheme - Default
directory.
您应该添加如下内容:
<dict>
<key>scope</key>
<string>source.js</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#000000</string>
</dict>
</dict>
作为设置数组的子项(当然,您必须使用颜色代码更改 #000000).
as a child of the settings array (of course you have to change #000000 with your color code).
这篇关于Sublime 2 - 根据文件类型更改背景颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!