@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.
- package/index.js +10 -9
- package/package.json +2 -2
- package/resources/c.code-snippets +1 -0
- package/resources/c.tmLanguage.json +1 -0
- package/resources/cpp.embedded.macro.tmLanguage.json +1 -0
- package/resources/cpp.tmLanguage.json +1 -0
- package/resources/cuda-cpp.tmLanguage.json +1 -0
- package/resources/language-configuration.json +1 -0
- package/resources/package.json +1 -0
- package/resources/package.nls.json +1 -0
- package/resources/platform.tmLanguage.json +1 -0
- package/c.code-snippets +0 -16
- package/c.tmLanguage.json +0 -3555
- package/cpp.embedded.macro.tmLanguage.json +0 -9366
- package/cpp.tmLanguage.json +0 -16474
- package/cuda-cpp.tmLanguage.json +0 -19818
- package/language-configuration.json +0 -45
- package/package.nls.json +0 -4
- package/platform.tmLanguage.json +0 -1126
|
@@ -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