cspell-grammar-syntax
Version:
tmLanguage syntax files for use with cspell-grammar
36 lines (35 loc) • 590 B
JSON
{
"comments": {
"lineComment": "%"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["`", "'"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["`", "'"],
["$", "$"]
],
"indentationRules": {
"increaseIndentPattern": "(\\\\begin{(?!document))|(\\\\documentclass)",
"decreaseIndentPattern": "(\\\\end{)|(\\\\begin{document})"
},
"folding": {
"markers": {
"start": "^\\s*%\\s*#?region\\b.*",
"end": "^\\s*%\\s*#?endregion\\b.*"
}
}
}