@codingame/monaco-vscode-cpp-default-extension 1.85.2 → 1.85.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,45 +0,0 @@
1
- {
2
- "comments": {
3
- "lineComment": "//",
4
- "blockComment": ["/*", "*/"]
5
- },
6
- "brackets": [
7
- ["{", "}"],
8
- ["[", "]"],
9
- ["(", ")"]
10
- ],
11
- "autoClosingPairs": [
12
- { "open": "[", "close": "]" },
13
- { "open": "{", "close": "}" },
14
- { "open": "(", "close": ")" },
15
- { "open": "'", "close": "'", "notIn": ["string", "comment"] },
16
- { "open": "\"", "close": "\"", "notIn": ["string"] },
17
- { "open": "/*", "close": "*/", "notIn": ["string", "comment"] }
18
- ],
19
- "surroundingPairs": [
20
- ["{", "}"],
21
- ["[", "]"],
22
- ["(", ")"],
23
- ["\"", "\""],
24
- ["'", "'"],
25
- ["<", ">"]
26
- ],
27
- "wordPattern": "(-?\\d*\\.\\d\\w*)|([^\\`\\~\\!\\@\\#\\%\\^\\&\\*\\(\\)\\-\\=\\+\\[\\{\\]\\}\\\\\\|\\;\\:\\'\\\"\\,\\.\\<\\>\\/\\?\\s]+)",
28
- "folding": {
29
- "markers": {
30
- "start": "^\\s*#pragma\\s+region\\b",
31
- "end": "^\\s*#pragma\\s+endregion\\b"
32
- }
33
- },
34
- "onEnterRules": [
35
- {
36
- // Decrease indentation after single line if/else if/else, for, or while
37
- "previousLineText": "^\\s*(((else ?)?if|for|while)\\s*\\(.*\\)\\s*|else\\s*)$",
38
- // But make sure line doesn't have braces or is not another if statement
39
- "beforeText": "^\\s+([^{i\\s]|i(?!f\\b))",
40
- "action": {
41
- "indent": "outdent"
42
- }
43
- }
44
- ]
45
- }
package/package.nls.json DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "displayName": "C/C++ Language Basics",
3
- "description": "Provides snippets, syntax highlighting, bracket matching and folding in C/C++ files."
4
- }