mirror of
https://github.com/enkia/tokyo-night-vscode-theme.git
synced 2024-11-07 20:24:11 -05:00
Add preliminary Terraform syntax support
This commit is contained in:
parent
88df42ff48
commit
fc19b20fae
4 changed files with 16 additions and 0 deletions
|
@ -1,4 +1,8 @@
|
|||
# Release Notes
|
||||
## 0.8.6
|
||||
`2022-06-28`
|
||||
- Add preliminary Terraform syntax support
|
||||
|
||||
## 0.8.5
|
||||
`2022-06-28`
|
||||
- Update comment doc color
|
||||
|
|
|
@ -713,6 +713,7 @@
|
|||
"name": "Object Key",
|
||||
"scope": [
|
||||
"meta.object-literal.key",
|
||||
"entity.name.type",
|
||||
"string.alias.graphql",
|
||||
"string.unquoted.graphql",
|
||||
"string.unquoted.alias.graphql",
|
||||
|
@ -780,6 +781,7 @@
|
|||
"name": "Function Definition",
|
||||
"scope": [
|
||||
"entity.name.function",
|
||||
"variable.other.enummember",
|
||||
"meta.function-call",
|
||||
"meta.function-call entity.name.function",
|
||||
"variable.function",
|
||||
|
@ -820,6 +822,8 @@
|
|||
"scope": [
|
||||
"meta.definition.variable variable.other.constant",
|
||||
"meta.definition.variable variable.other.readwrite",
|
||||
"variable.declaration.hcl variable.other.readwrite.hcl",
|
||||
"meta.mapping.key.hcl variable.other.readwrite.hcl",
|
||||
"variable.other.declaration"
|
||||
],
|
||||
"settings": {
|
||||
|
|
|
@ -734,6 +734,7 @@
|
|||
"name": "Object Key",
|
||||
"scope": [
|
||||
"meta.object-literal.key",
|
||||
"entity.name.type",
|
||||
"string.alias.graphql",
|
||||
"string.unquoted.graphql",
|
||||
"string.unquoted.alias.graphql",
|
||||
|
@ -802,6 +803,7 @@
|
|||
"name": "Function Definition",
|
||||
"scope": [
|
||||
"entity.name.function",
|
||||
"variable.other.enummember",
|
||||
"meta.function-call",
|
||||
"meta.function-call entity.name.function",
|
||||
"variable.function",
|
||||
|
@ -842,6 +844,8 @@
|
|||
"scope": [
|
||||
"meta.definition.variable variable.other.constant",
|
||||
"meta.definition.variable variable.other.readwrite",
|
||||
"variable.declaration.hcl variable.other.readwrite.hcl",
|
||||
"meta.mapping.key.hcl variable.other.readwrite.hcl",
|
||||
"variable.other.declaration"
|
||||
],
|
||||
"settings": {
|
||||
|
|
|
@ -712,6 +712,7 @@
|
|||
"name": "Object Key",
|
||||
"scope": [
|
||||
"meta.object-literal.key",
|
||||
"entity.name.type",
|
||||
"string.alias.graphql",
|
||||
"string.unquoted.graphql",
|
||||
"string.unquoted.alias.graphql",
|
||||
|
@ -780,6 +781,7 @@
|
|||
"name": "Function Definition",
|
||||
"scope": [
|
||||
"entity.name.function",
|
||||
"variable.other.enummember",
|
||||
"meta.function-call",
|
||||
"meta.function-call entity.name.function",
|
||||
"variable.function",
|
||||
|
@ -820,6 +822,8 @@
|
|||
"scope": [
|
||||
"meta.definition.variable variable.other.constant",
|
||||
"meta.definition.variable variable.other.readwrite",
|
||||
"variable.declaration.hcl variable.other.readwrite.hcl",
|
||||
"meta.mapping.key.hcl variable.other.readwrite.hcl",
|
||||
"variable.other.declaration"
|
||||
],
|
||||
"settings": {
|
||||
|
|
Loading…
Reference in a new issue