【发布时间】:2015-06-26 10:34:06
【问题描述】:
您好,我已经下载了插件 HighlightWords 以将它与 Sublime Text 3 一起使用,它承诺使用某些颜色突出显示单词。从这里下载:
https://github.com/seanliang/HighlightWords
有人可以帮我更改默认突出显示的颜色吗?我已经尝试过的事情我无法做到。这是要修改的文件:
{
// The colors to highlight texts are specified by a list of theme scope names,
// and HighlightWords uses this list in circular order.
"colors_by_scope":
[
//"keyword",
//"number",
"string",
"entity.name.class",
"variable.parameter",
"invalid.deprecated",
"invalid",
"support.function"
],
"whole_word": false,
"use_regex": false,
"ignore_case": false,
// Keywords to be always highlighted, clear the list to disable it.
// "keyword" are literally matched, and "color" refers to theme scope names.
// Note that json has some special characters like '\' should be escaped.
"permanent_highlight_keyword_color_mappings":
[
//{"keyword": "TODO", "color": "support.function"},
//{"keyword": "FIXIT", "color": "support.function"},
]
}
【问题讨论】:
标签: plugins sublimetext3 highlight