什麼 Sublime Text 3 語言可以使用類似 json 的程式碼?

什麼 Sublime Text 3 語言可以使用類似 json 的程式碼?

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 配置)提供語法突出顯示。

在此輸入影像描述

相關內容