diff options
Diffstat (limited to 'editors/code/package.json')
-rw-r--r-- | editors/code/package.json | 39 |
1 files changed, 21 insertions, 18 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index f46684c76..b8a2182f0 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -21,7 +21,7 @@ | |||
21 | "Programming Languages" | 21 | "Programming Languages" |
22 | ], | 22 | ], |
23 | "engines": { | 23 | "engines": { |
24 | "vscode": "^1.44.0" | 24 | "vscode": "^1.45.0" |
25 | }, | 25 | }, |
26 | "enableProposedApi": true, | 26 | "enableProposedApi": true, |
27 | "scripts": { | 27 | "scripts": { |
@@ -39,15 +39,15 @@ | |||
39 | "devDependencies": { | 39 | "devDependencies": { |
40 | "@rollup/plugin-commonjs": "^11.1.0", | 40 | "@rollup/plugin-commonjs": "^11.1.0", |
41 | "@rollup/plugin-node-resolve": "^7.1.3", | 41 | "@rollup/plugin-node-resolve": "^7.1.3", |
42 | "@types/node": "^12.12.37", | 42 | "@types/node": "^12.12.39", |
43 | "@types/node-fetch": "^2.5.6", | 43 | "@types/node-fetch": "^2.5.7", |
44 | "@types/vscode": "^1.44.0", | 44 | "@types/vscode": "^1.45.0", |
45 | "@typescript-eslint/eslint-plugin": "^2.29.0", | 45 | "@typescript-eslint/eslint-plugin": "^2.33.0", |
46 | "@typescript-eslint/parser": "^2.29.0", | 46 | "@typescript-eslint/parser": "^2.33.0", |
47 | "eslint": "^6.8.0", | 47 | "eslint": "^6.8.0", |
48 | "rollup": "^2.7.1", | 48 | "rollup": "^2.10.0", |
49 | "tslib": "^1.11.1", | 49 | "tslib": "^1.12.0", |
50 | "typescript": "^3.8.3", | 50 | "typescript": "^3.9.2", |
51 | "typescript-formatter": "^7.2.2", | 51 | "typescript-formatter": "^7.2.2", |
52 | "vsce": "^1.75.0" | 52 | "vsce": "^1.75.0" |
53 | }, | 53 | }, |
@@ -595,34 +595,37 @@ | |||
595 | "language": "rust", | 595 | "language": "rust", |
596 | "scopes": { | 596 | "scopes": { |
597 | "attribute": [ | 597 | "attribute": [ |
598 | "meta.attribute" | 598 | "meta.attribute.rust" |
599 | ], | 599 | ], |
600 | "builtinType": [ | 600 | "builtinType": [ |
601 | "support.type.primitive" | 601 | "support.type.primitive.rust" |
602 | ], | 602 | ], |
603 | "lifetime": [ | 603 | "lifetime": [ |
604 | "storage.modifier.lifetime.rust" | 604 | "storage.modifier.lifetime.rust" |
605 | ], | 605 | ], |
606 | "typeAlias": [ | 606 | "typeAlias": [ |
607 | "entity.name.type.typeAlias" | 607 | "entity.name.type.typeAlias.rust" |
608 | ], | 608 | ], |
609 | "union": [ | 609 | "union": [ |
610 | "entity.name.type.union" | 610 | "entity.name.type.union.rust" |
611 | ], | 611 | ], |
612 | "struct": [ | 612 | "struct": [ |
613 | "entity.name.type.struct" | 613 | "entity.name.type.struct.rust" |
614 | ], | 614 | ], |
615 | "keyword": [ | 615 | "keyword": [ |
616 | "keyword.other" | 616 | "keyword.other.rust" |
617 | ], | 617 | ], |
618 | "keyword.controlFlow": [ | 618 | "keyword.controlFlow": [ |
619 | "keyword.control" | 619 | "keyword.control.rust" |
620 | ], | 620 | ], |
621 | "variable.constant": [ | 621 | "variable.constant": [ |
622 | "variable.other.constant" | 622 | "variable.other.constant.rust" |
623 | ], | 623 | ], |
624 | "formatSpecifier": [ | 624 | "formatSpecifier": [ |
625 | "punctuation.section.embedded" | 625 | "punctuation.section.embedded.rust" |
626 | ], | ||
627 | "*.mutable": [ | ||
628 | "markup.underline" | ||
626 | ] | 629 | ] |
627 | } | 630 | } |
628 | } | 631 | } |