Java properties format syntax support

This commit is contained in:
BoykoAlex
2016-09-22 19:05:31 -04:00
parent be8c73adec
commit d3a279fddc
8 changed files with 277 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{
"comments": {
"lineComment": "#",
"blockComment": [ "#", "!" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
]
}