microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-shell-ui-greeting-functionality

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

ts/extensions/agr-language/language-configuration.json

26lines · modecode

1{
2 "comments": {
3 "lineComment": "//"
4 },
5 "brackets": [
6 ["{", "}"],
7 ["[", "]"],
8 ["(", ")"]
9 ],
10 "autoClosingPairs": [
11 { "open": "{", "close": "}" },
12 { "open": "[", "close": "]" },
13 { "open": "(", "close": ")" },
14 { "open": "<", "close": ">" },
15 { "open": "\"", "close": "\"" },
16 { "open": "'", "close": "'" }
17 ],
18 "surroundingPairs": [
19 ["{", "}"],
20 ["[", "]"],
21 ["(", ")"],
22 ["<", ">"],
23 ["\"", "\""],
24 ["'", "'"]
25 ]
26}
27