diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2021-05-04 22:24:28 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2021-05-04 22:24:28 +0200 |
| commit | 80c7050515c29d7bd0ca608832ddd5ee11361fd9 (patch) | |
| tree | 1682e73355484527af7e7563c217237fd63df505 /editors/vscode/language-configuration.json | |
| parent | e123d0024da473808263371e32cf23f0c29c726e (diff) | |
move vscode extension to make it easier to sync releases
Diffstat (limited to 'editors/vscode/language-configuration.json')
| -rw-r--r-- | editors/vscode/language-configuration.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/editors/vscode/language-configuration.json b/editors/vscode/language-configuration.json new file mode 100644 index 0000000..d676f80 --- /dev/null +++ b/editors/vscode/language-configuration.json @@ -0,0 +1,27 @@ +{ + "comments": { + "lineComment": "//", + "blockComment": ["/*", "*/"] + }, + "brackets": [ + ["{", "}"], + ["[", "]"], + ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"], + ["`", "`"] + ], + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"], + ["`", "`"] + ] +}
\ No newline at end of file |