Sublime Text 3 非常适合编辑,但它似乎不支持使用注释的 json 等语言。
例如:HCL(hashicorp 语言)与 json 兼容,但也允许注释
{
"foo":"bar"
#here is a comment, can't do this in regular json
}
另一个例子是logstash 配置
input {
stdin {codec => json}
}
filter {
mutate {
rename => [ "FOO", "foo" ]
}
output { stdout { codec => rubydebug} }
我在 Sublime 中没有看到任何支持这些类型文档语法高亮的语言。有吗?
答案1
使用YAML
解析器将为包括 logstash 配置在内的 Hashicorp 语言 (HCL) 样式代码提供语法高亮显示。