Archived
1
0

chore(vscode): update to 1.53.2

These conflicts will be resolved in the following commits. We do it this way so
that PR review is possible.
This commit is contained in:
Joe Previte
2021-02-25 11:27:27 -07:00
1900 changed files with 83066 additions and 64589 deletions

View File

@ -4,7 +4,7 @@
"If you want to provide a fix or improvement, please create a pull request against the original repository.",
"Once accepted there, we are happy to receive an update request."
],
"version": "https://github.com/textmate/swift.tmbundle/commit/97d29d2073853c328e42239c5d38c96e2e2ade9c",
"version": "https://github.com/textmate/swift.tmbundle/commit/d31bae2e0d6a4d977187dc7f06f538d6ba56b89b",
"name": "Swift",
"scopeName": "source.swift",
"comment": "See swift.tmbundle/grammar-test.swift for test cases.",
@ -754,6 +754,9 @@
{
"include": "#function-initializer"
},
{
"include": "#typed-variable-declaration"
},
{
"include": "#import"
},
@ -792,6 +795,10 @@
"match": "\\b(?:throws|rethrows)\\b",
"name": "keyword.control.exception.swift"
},
{
"match": "\\bsome\\b",
"name": "keyword.operator.type.opaque.swift"
},
{
"match": "\\binout\\b",
"name": "storage.modifier.swift"
@ -2228,6 +2235,20 @@
}
]
},
"typed-variable-declaration": {
"begin": "(?x)\n\t\t\t\t\t\t\\b(let|var)\\b\\s+\n\t\t\t\t\t\t(?<q>`?)[\\p{L}_][\\p{L}_\\p{N}\\p{M}]*(\\k<q>)\\s*\n\t\t\t\t\t\t:\n\t\t\t\t\t",
"beginCaptures": {
"1": {
"name": "keyword.other.declaration-specifier.swift"
}
},
"end": "(?=$|[={])",
"patterns": [
{
"include": "#available-types"
}
]
},
"types-precedencegroup": {
"patterns": [
{