Sublime Text 3 非常適合編輯,但它似乎不支援像 json 這樣使用註釋的語言。
例如:HCL(hashicorp語言)相容json,同時也允許註釋
{
"foo":"bar"
#here is a comment, can't do this in regular json
}
另一個例子是日誌儲存配置
input {
stdin {codec => json}
}
filter {
mutate {
rename => [ "FOO", "foo" ]
}
output { stdout { codec => rubydebug} }
我在 sublime 中沒有看到任何語言支援這些類型文件的語法突出顯示。有嗎?
答案1
使用YAML
解析器將為 Hashicorp 語言 (HCL) 樣式程式碼(包括 Logstash 配置)提供語法突出顯示。