mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Fix nested comment colorization (#23245)
This commit is contained in:
@@ -6,12 +6,12 @@
|
|||||||
"git": {
|
"git": {
|
||||||
"name": "microsoft/vscode-mssql",
|
"name": "microsoft/vscode-mssql",
|
||||||
"repositoryUrl": "https://github.com/microsoft/vscode-mssql",
|
"repositoryUrl": "https://github.com/microsoft/vscode-mssql",
|
||||||
"commitHash": "3929516cce0a570e91ee1be74b09ed886cb360f4"
|
"commitHash": "cb5940297a8cef76daaf4a6b63c4968c9a12d17a"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "1.19.0"
|
"version": "1.20.0"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": 1
|
"version": 1
|
||||||
}
|
}
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
"If you want to provide a fix or improvement, please create a pull request against the original repository.",
|
"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."
|
"Once accepted there, we are happy to receive an update request."
|
||||||
],
|
],
|
||||||
"version": "https://github.com/microsoft/vscode-mssql/commit/3929516cce0a570e91ee1be74b09ed886cb360f4",
|
"version": "https://github.com/microsoft/vscode-mssql/commit/cb5940297a8cef76daaf4a6b63c4968c9a12d17a",
|
||||||
"name": "SQL",
|
"name": "SQL",
|
||||||
"scopeName": "source.sql",
|
"scopeName": "source.sql",
|
||||||
"patterns": [
|
"patterns": [
|
||||||
@@ -424,14 +424,22 @@
|
|||||||
"patterns": []
|
"patterns": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"begin": "/\\*",
|
"include": "#comment-block"
|
||||||
"captures": {
|
}
|
||||||
"0": {
|
]
|
||||||
"name": "punctuation.definition.comment.sql"
|
},
|
||||||
}
|
"comment-block": {
|
||||||
},
|
"begin": "/\\*",
|
||||||
"end": "\\*/",
|
"captures": {
|
||||||
"name": "comment.block.c"
|
"0": {
|
||||||
|
"name": "punctuation.definition.comment.sql"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"end": "\\*/",
|
||||||
|
"name": "comment.block",
|
||||||
|
"patterns": [
|
||||||
|
{
|
||||||
|
"include": "#comment-block"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -624,4 +632,4 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user