我最近开始使用Sublime Text 2.我需要以粗体显示的php字符串变量。在默认配置文件(preferences-settings-default)中,我没有找到这些选项。我怎样才能在Sublime Text 2中解决它? 感谢。
答案 0 :(得分:0)
这是您需要使用的正则表达式模式:
{ "match": "\\$([A-Za-z][A-Za-z0-9_]+)",
"name": "keyword.syntaxTypeAbbreviation",
"captures": {
"1": { "name": "moreSpecific.selectorName.syntaxTypeAbbreviation " }
},
"comment": "Variables like $PARAM1, $TM_SELECTION..."
}
参考: - http://sublimetext.info/docs/en/extensibility/syntaxdefs.html#fine-tuning-matches