Skip to content

Commit

Permalink
distribution: MXML configuration for pairs and things
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Mar 3, 2025
1 parent 3c4ac62 commit 18fa24a
Showing 1 changed file with 63 additions and 67 deletions.
130 changes: 63 additions & 67 deletions distribution/src/assembly/mxml.configuration.json
Original file line number Diff line number Diff line change
@@ -1,68 +1,64 @@
{
"comments":
{
"lineComment": "",
"blockComment": [ "<!--", "-->" ]
},
"brackets":
[
[ "<", ">" ],
[ "{", "}" ],
[ "[", "]" ],
[ "(", ")" ]
],
"autoClosingPairs":
[
{
"open": "{",
"close": "}"
},
{
"open": "[",
"close": "]"
},
{
"open": "(",
"close": ")"
},
{
"open": "\"",
"close": "\"",
"notIn":
[
"string"
]
},
{
"open": "'",
"close": "'",
"notIn":
[
"string",
"comment"
]
},
{
"open": "/**",
"close": " */",
"notIn":
[
"string"
]
}
],
"surroundingPairs":
[
["<", ">"],
["'", "'"],
["\"", "\""]
],
"folding":
{
"markers":
{
"start": "^\\s*<!--\\s*#?region\\s*-->",
"end": "^\\s*<!--\\s*#?endregion-->"
}
}
}
"comments": {
"blockComment": ["<!--", "-->"]
},
"brackets": [
["<!--", "-->"],
["<", ">"],
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
{
"open": "{",
"close": "}"
},
{
"open": "[",
"close": "]"
},
{
"open": "(",
"close": ")"
},
{
"open": "\"",
"close": "\"",
"notIn": ["string"]
},
{
"open": "'",
"close": "'",
"notIn": ["string", "comment"]
},
{
"open": "/**",
"close": " */",
"notIn": ["string"]
},
{
"open": "<!--",
"close": "-->",
"notIn": ["comment", "string"]
}
],
"surroundingPairs": [
{ "open": "'", "close": "'" },
{ "open": "\"", "close": "\"" },
{ "open": "{", "close": "}" },
{ "open": "[", "close": "]" },
{ "open": "(", "close": ")" },
{ "open": "<", "close": ">" }
],
"colorizedBracketPairs": [],
"folding": {
"markers": {
"start": "^\\s*<!--\\s*#?region\\s*-->",
"end": "^\\s*<!--\\s*#?endregion-->"
}
},
"wordPattern": {
"pattern": "(-?\\d*\\.\\d\\w*)|([^\\`\\~\\!\\@\\#\\$\\%\\^\\&\\*\\(\\)\\=\\+\\[\\{\\]\\}\\\\\\|\\;\\:\\'\\\"\\,\\.\\<\\>\\/\\?\\s]+)"
}
}

0 comments on commit 18fa24a

Please sign in to comment.