diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-02-23 20:24:10 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-02-23 20:27:23 +0100 |
| commit | 7092c504474eca25ba456db606de11402ea1e8ca (patch) | |
| tree | 128cb37a91e68d8be9487942d7358b89aea8135a /tools/support/config.json | |
| parent | de37a056ed3e90d8ba93c4b3a315a8046ef53484 (diff) | |
VS Code language support extension ðŸ›
Diffstat (limited to 'tools/support/config.json')
| -rw-r--r-- | tools/support/config.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/support/config.json b/tools/support/config.json new file mode 100644 index 00000000..7ad0f437 --- /dev/null +++ b/tools/support/config.json @@ -0,0 +1,29 @@ +{ + "comments": { + "lineComment": "//", + "blockComment": ["/*", "*/"] + }, + "brackets": [ + ["[", "]"], + ["{", "}"], + ["(", ")"] + ], + "autoClosingPairs": [ + { "open": "[", "close": "]" }, + { "open": "{", "close": "}" }, + { "open": "(", "close": ")" }, + { "open": "\"", "close": "\"", "notIn": ["string"] }, + { "open": "$", "close": "$", "notIn": ["string"] } + ], + "autoCloseBefore": "$ \n\t", + "surroundingPairs": [ + ["[", "]"], + ["{", "}"], + ["(", ")"], + ["\"", "\""], + ["*", "*"], + ["_", "_"], + ["`", "`"], + ["$", "$"] + ] +} |
