This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
forked from bolinfest/monaco-tm
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
779bc11
commit 6100423
Showing
4 changed files
with
910 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
{ | ||
"comments": { | ||
"lineComment": "#", | ||
"blockComment": [ | ||
"/*", | ||
"*/" | ||
] | ||
}, | ||
"brackets": [ | ||
[ | ||
"{", | ||
"}" | ||
], | ||
[ | ||
"[", | ||
"]" | ||
], | ||
[ | ||
"(", | ||
")" | ||
] | ||
], | ||
"autoClosingPairs": [ | ||
{ | ||
"open": "{", | ||
"close": "}" | ||
}, | ||
{ | ||
"open": "[", | ||
"close": "]" | ||
}, | ||
{ | ||
"open": "(", | ||
"close": ")" | ||
}, | ||
{ | ||
"open": "\"", | ||
"close": "\"", | ||
"notIn": [ | ||
"string" | ||
] | ||
}, | ||
{ | ||
"open": "'", | ||
"close": "'", | ||
"notIn": [ | ||
"string", | ||
"comment" | ||
] | ||
} | ||
], | ||
"autoCloseBefore": ";:.,=}])> \n\t\"", | ||
"surroundingPairs": [ | ||
[ | ||
"{", | ||
"}" | ||
], | ||
[ | ||
"[", | ||
"]" | ||
], | ||
[ | ||
"(", | ||
")" | ||
], | ||
[ | ||
"\"", | ||
"\"" | ||
], | ||
[ | ||
"'", | ||
"'" | ||
] | ||
] | ||
} |
Oops, something went wrong.