rust/editors/code/package.json

606 lines
22 KiB
JSON
Raw Normal View History

2018-07-30 20:58:49 +02:00
{
2018-09-16 11:54:24 +02:00
"name": "ra-lsp",
"displayName": "ra-lsp",
"description": "An alternative rust language server to the RLS",
"preview": true,
"private": true,
2018-08-27 21:52:43 +02:00
"version": "0.0.1",
"publisher": "matklad",
"repository": {
2018-09-16 11:54:24 +02:00
"url": "https://github.com/matklad/rust-analyzer/"
2018-08-27 21:52:43 +02:00
},
"categories": [
"Other"
2018-08-11 00:04:09 +02:00
],
2018-08-27 21:52:43 +02:00
"engines": {
2019-12-20 19:52:11 +01:00
"vscode": "^1.41.0"
2018-08-27 21:52:43 +02:00
},
"scripts": {
"vscode:prepublish": "npm run compile",
2019-12-30 02:22:52 +01:00
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
2018-08-27 21:52:43 +02:00
},
"dependencies": {
"vscode-languageclient": "^6.0.0-next.9",
2019-12-30 02:22:52 +01:00
"jsonc-parser": "^2.1.0",
"lookpath": "^1.0.4",
"seedrandom": "^3.0.5"
2018-08-27 21:52:43 +02:00
},
"devDependencies": {
2019-12-20 19:52:11 +01:00
"@types/node": "^12.12.21",
"@types/vscode": "^1.41.0",
2019-12-30 02:22:52 +01:00
"@types/seedrandom": "^2.4.28",
"typescript": "^3.7.3"
2018-08-27 21:52:43 +02:00
},
"activationEvents": [
"onLanguage:rust",
"onCommand:rust-analyzer.analyzerStatus",
"onCommand:rust-analyzer.collectGarbage",
"workspaceContains:**/Cargo.toml"
2018-08-13 12:46:05 +02:00
],
2019-12-30 02:22:52 +01:00
"main": "./out/extension",
2018-08-27 21:52:43 +02:00
"contributes": {
"taskDefinitions": [
{
"type": "cargo",
"required": [
"command"
],
"properties": {
"label": {
"type": "string"
},
"command": {
"type": "string"
},
"args": {
"type": "array"
},
"env": {
"type": "object"
}
}
}
],
"commands": [
{
2019-01-28 12:43:07 +01:00
"command": "rust-analyzer.syntaxTree",
"title": "Show Syntax Tree",
2019-01-29 18:16:14 +01:00
"category": "Rust Analyzer"
2018-08-27 21:52:43 +02:00
},
2019-11-19 18:06:10 +01:00
{
"command": "rust-analyzer.expandMacro",
"title": "Expand macro recursively",
"category": "Rust Analyzer"
},
2018-08-27 21:52:43 +02:00
{
2019-01-28 12:43:07 +01:00
"command": "rust-analyzer.matchingBrace",
2019-01-29 18:16:14 +01:00
"title": "Find matching brace",
"category": "Rust Analyzer"
2018-08-27 21:52:43 +02:00
},
{
2019-01-28 12:43:07 +01:00
"command": "rust-analyzer.parentModule",
2019-01-29 18:16:14 +01:00
"title": "Locate parent module",
"category": "Rust Analyzer"
2018-08-27 21:52:43 +02:00
},
{
2019-01-28 12:43:07 +01:00
"command": "rust-analyzer.joinLines",
2019-01-29 18:16:14 +01:00
"title": "Join lines",
"category": "Rust Analyzer"
2018-08-27 21:52:43 +02:00
},
{
2019-01-28 12:43:07 +01:00
"command": "rust-analyzer.run",
2019-01-29 18:16:14 +01:00
"title": "Run",
"category": "Rust Analyzer"
2019-01-22 22:15:03 +01:00
},
{
2019-01-28 12:43:07 +01:00
"command": "rust-analyzer.analyzerStatus",
2019-01-29 18:16:14 +01:00
"title": "Status",
"category": "Rust Analyzer"
2019-01-25 17:11:58 +01:00
},
{
2019-01-28 12:43:07 +01:00
"command": "rust-analyzer.collectGarbage",
2019-01-29 18:16:14 +01:00
"title": "Run garbage collection",
"category": "Rust Analyzer"
2019-04-15 21:41:27 +02:00
},
{
"command": "rust-analyzer.reload",
"title": "Restart server",
"category": "Rust Analyzer"
2018-08-27 21:52:43 +02:00
}
],
"keybindings": [
{
2019-01-28 12:43:07 +01:00
"command": "rust-analyzer.parentModule",
2018-08-27 21:52:43 +02:00
"key": "ctrl+u",
"when": "editorTextFocus && editorLangId == rust"
},
{
2019-01-28 12:43:07 +01:00
"command": "rust-analyzer.matchingBrace",
2018-08-27 21:52:43 +02:00
"key": "ctrl+shift+m",
"when": "editorTextFocus && editorLangId == rust"
},
{
2019-01-28 12:43:07 +01:00
"command": "rust-analyzer.joinLines",
2018-08-27 21:52:43 +02:00
"key": "ctrl+shift+j",
"when": "editorTextFocus && editorLangId == rust"
},
{
2019-01-28 12:43:07 +01:00
"command": "rust-analyzer.run",
2018-08-27 21:52:43 +02:00
"key": "ctrl+r",
"when": "editorTextFocus && editorLangId == rust"
}
2018-08-13 12:46:05 +02:00
],
"configuration": {
"type": "object",
"title": "Rust Analyzer",
"properties": {
2019-01-28 12:43:07 +01:00
"rust-analyzer.highlightingOn": {
"type": "boolean",
"default": false,
"description": "Highlight Rust code (overrides built-in syntax highlighting)"
},
"rust-analyzer.scopeMappings": {
"type": "object",
"definitions": {},
"properties": {
"comment": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"string": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"keyword": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"keyword.control": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"keyword.unsafe": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"function": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"parameter": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"constant": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"type": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"builtin": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"text": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"attribute": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"literal": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"macro": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"variable": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"variable.mut": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"field": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
},
"module": {
"$ref": "vscode://schemas/textmate-colors#/items/properties/scope"
}
},
"additionalProperties": false,
"description": "Mapping Rust Analyzer scopes to TextMateRule scopes list."
},
2019-05-27 11:26:15 +02:00
"rust-analyzer.rainbowHighlightingOn": {
"type": "boolean",
"default": false,
"description": "When highlighting Rust code, use a unique color per identifier"
},
2019-08-22 13:44:16 +02:00
"rust-analyzer.featureFlags": {
"type": "object",
"default": {},
"description": "Fine grained feature flags to disable annoying features"
},
"rust-analyzer.enableEnhancedTyping": {
"type": "boolean",
"default": true,
"description": "Enables enhanced typing. NOTE: If using a VIM extension, you should set this to false"
},
2019-01-28 12:43:07 +01:00
"rust-analyzer.raLspServerPath": {
"type": [
"string"
],
"default": "ra_lsp_server",
"description": "Path to ra_lsp_server executable"
},
"rust-analyzer.excludeGlobs": {
"type": "array",
2019-08-21 16:30:58 +02:00
"default": [],
"description": "Paths to exclude from analysis"
},
2019-09-06 15:25:24 +02:00
"rust-analyzer.useClientWatching": {
"type": "boolean",
2019-12-17 12:41:44 +01:00
"default": true,
2019-09-06 15:25:24 +02:00
"description": "client provided file watching instead of notify watching."
},
"rust-analyzer.cargo-watch.enable": {
"type": "boolean",
"default": true,
"description": "Run `cargo check` for diagnostics on save"
},
"rust-analyzer.cargo-watch.arguments": {
"type": "array",
"description": "`cargo-watch` arguments. (e.g: `--features=\"shumway,pdf\"` will run as `cargo watch -x \"check --features=\"shumway,pdf\"\"` )",
"default": []
},
"rust-analyzer.cargo-watch.command": {
"type": "string",
"description": "`cargo-watch` command. (e.g: `clippy` will run as `cargo watch -x clippy` )",
"default": "check"
},
"rust-analyzer.cargo-watch.allTargets": {
"type": "boolean",
"description": "Check all targets and tests (will be passed as `--all-targets`)",
"default": true
},
2019-01-28 12:43:07 +01:00
"rust-analyzer.trace.server": {
"type": "string",
"scope": "window",
"enum": [
"off",
"messages",
"verbose"
],
2019-04-02 08:43:02 +02:00
"enumDescriptions": [
"No traces",
"Error only",
"Full log"
],
"default": "off",
2019-01-28 12:43:07 +01:00
"description": "Trace requests to the ra_lsp_server"
2019-04-02 07:07:40 +02:00
},
2019-06-07 19:49:29 +02:00
"rust-analyzer.lruCapacity": {
"type": "number",
"default": null,
"description": "Number of syntax trees rust-analyzer keeps in memory"
2019-07-23 15:38:21 +02:00
},
"rust-analyzer.displayInlayHints": {
"type": "boolean",
"default": true,
"description": "Display additional type information in the editor"
2019-10-18 13:40:03 +02:00
},
"rust-analyzer.maxInlayHintLength": {
"type": "number",
"default": 20,
"description": "Maximum length for inlay hints"
2019-12-13 11:16:34 +01:00
},
"rust-analyzer.cargoFeatures.noDefaultFeatures": {
"type": "boolean",
"default": false,
"description": "Do not activate the `default` feature"
},
"rust-analyzer.cargoFeatures.allFeatures": {
"type": "boolean",
"default": true,
2019-12-13 11:16:34 +01:00
"description": "Activate all available features"
},
"rust-analyzer.cargoFeatures.features": {
"type": "array",
"default": [],
"description": "List of features to activate"
}
}
},
"problemPatterns": [
2018-08-27 21:52:43 +02:00
{
"name": "rustc",
"patterns": [
2018-08-27 21:52:43 +02:00
{
"regexp": "^(warning|warn|error)(?:\\[(.*?)\\])?: (.*)$",
2018-08-27 21:52:43 +02:00
"severity": 1,
"code": 2,
"message": 3
2018-08-27 21:52:43 +02:00
},
{
"regexp": "^[\\s->=]*(.*?):(\\d*):(\\d*)\\s*$",
"file": 1,
"line": 2,
"column": 3
2018-08-27 21:52:43 +02:00
}
]
},
{
"name": "rustc-json",
2019-12-15 17:19:41 +01:00
"patterns": [
{
"regexp": "^.*\"message\":{\"message\":\"([^\"]*).*?\"file_name\":\"([^\"]+).*?\"line_start\":(\\d+).*?\"line_end\":(\\d+).*?\"column_start\":(\\d+).*?\"column_end\":(\\d+).*}$",
"message": 1,
"file": 2,
"line": 3,
"endLine": 4,
"column": 5,
"endColumn": 6
}
]
2018-08-27 21:52:43 +02:00
}
],
"problemMatchers": [
{
"name": "rustc",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": "$rustc"
2019-04-14 12:45:36 +02:00
},
{
"name": "rustc-json",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": "$rustc-json"
},
2019-04-14 12:45:36 +02:00
{
"name": "rustc-watch",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"background": {
"beginsPattern": "^\\[Running\\b",
"endsPattern": "^\\[Finished running\\b"
},
"pattern": "$rustc"
}
],
"colors": [
{
"id": "ralsp.comment",
"description": "Color for comments",
"defaults": {
2019-05-21 15:28:10 +02:00
"dark": "#6A9955",
"light": "#008000",
"highContrast": "#7CA668"
}
},
{
"id": "ralsp.string",
"description": "Color for strings",
"defaults": {
2019-05-21 15:28:10 +02:00
"dark": "#CE9178",
"light": "#A31515",
"highContrast": "#CE9178"
}
},
{
"id": "ralsp.keyword",
"description": "Color for keywords",
"defaults": {
2019-05-21 15:28:10 +02:00
"dark": "#569cd6",
"light": "#0000FF",
"highContrast": "#569CD6"
}
},
{
2019-05-21 15:28:10 +02:00
"id": "ralsp.keyword.control",
"description": "Color for control keywords",
"defaults": {
2019-05-21 15:28:10 +02:00
"dark": "#C586C0",
"light": "#AF00DB",
"highContrast": "#C586C0"
}
},
2019-05-21 15:28:10 +02:00
{
"id": "ralsp.keyword.unsafe",
"description": "Color for unsafe",
"defaults": {
"dark": "#FF3030",
"light": "#FF1010",
"highContrast": "#FF1010"
}
},
{
"id": "ralsp.function",
"description": "Color for functions",
"defaults": {
2019-05-21 15:28:10 +02:00
"dark": "#DCDCAA",
"light": "#795E26",
"highContrast": "#DCDCAA"
}
},
{
"id": "ralsp.parameter",
"description": "Color for parameters",
"defaults": {
2019-05-21 15:28:10 +02:00
"dark": "#9CDCFE",
"light": "#001080",
"highContrast": "#9CDCFE"
}
},
{
"id": "ralsp.builtin",
"description": "Color for builtins",
"defaults": {
"dark": "#DD6718",
"light": "#DD6718",
"highContrast": "#DD6718"
}
},
{
"id": "ralsp.text",
"description": "Color for text",
"defaults": {
2019-05-21 15:28:10 +02:00
"dark": "#D4D4D4",
"light": "#000000",
"highContrast": "#FFFFFF"
}
},
{
"id": "ralsp.attribute",
"description": "Color for attributes",
"defaults": {
2019-05-21 15:28:10 +02:00
"dark": "#9FE9BF",
"light": "#1F4B1F",
"highContrast": "#108010"
}
},
{
"id": "ralsp.literal",
"description": "Color for literals",
"defaults": {
2019-05-21 15:28:10 +02:00
"dark": "#BECEA8",
"light": "#09885A",
"highContrast": "#B5CEA8"
}
},
2019-12-14 12:24:07 +01:00
{
"id": "ralsp.literal.numeric",
"description": "Color for numeric literals",
"defaults": {
"dark": "#BECEA8",
"light": "#09885A",
"highContrast": "#B5CEA8"
}
},
{
"id": "ralsp.literal.char",
"description": "Color for character literals",
"defaults": {
"dark": "#BECEA8",
"light": "#09885A",
"highContrast": "#B5CEA8"
}
},
{
"id": "ralsp.literal.byte",
"description": "Color for byte literals",
"defaults": {
"dark": "#BECEA8",
"light": "#09885A",
"highContrast": "#B5CEA8"
}
},
{
"id": "ralsp.macro",
2019-05-23 12:26:38 +02:00
"description": "Color for macros",
"defaults": {
"dark": "#BFEBBF",
"light": "#DD6718",
"highContrast": "#ED7718"
}
2019-05-23 12:26:38 +02:00
},
{
"id": "ralsp.constant",
"description": "Color for constants",
"defaults": {
"dark": "#569cd6",
"light": "#267cb6",
"highContrast": "#569cd6"
}
},
{
"id": "ralsp.type",
2019-12-14 12:24:07 +01:00
"description": "Color for other types (traits, aliases..)",
"defaults": {
"dark": "#4EC9B0",
"light": "#267F99",
"highContrast": "#4EC9B0"
}
},
{
"id": "ralsp.type.builtin",
"description": "Color for built-in types (&str, bool, u16, u32)",
"defaults": {
"dark": "#4EC9B0",
"light": "#267F99",
"highContrast": "#4EC9B0"
}
},
2019-12-14 12:29:42 +01:00
{
"id": "ralsp.type.lifetime",
2019-12-16 16:32:46 +01:00
"description": "Color for lifetimes parameters",
2019-12-14 12:29:42 +01:00
"defaults": {
"dark": "#4EC9B0",
"light": "#267F99",
"highContrast": "#4EC9B0"
}
},
2019-12-14 12:24:07 +01:00
{
"id": "ralsp.type.self",
"description": "Color for `Self` param type",
"defaults": {
"dark": "#4EC9B0",
"light": "#267F99",
"highContrast": "#4EC9B0"
}
},
{
"id": "ralsp.type.param",
"description": "Color for type parameters",
2019-05-23 12:26:38 +02:00
"defaults": {
"dark": "#4EC9B0",
"light": "#267F99",
"highContrast": "#4EC9B0"
}
},
{
"id": "ralsp.field",
"description": "Color for fields",
"defaults": {
"dark": "#4EC9B0",
"light": "#267F99",
"highContrast": "#4EC9B0"
}
},
{
"id": "ralsp.variable",
"description": "Color for variables",
"defaults": {
"dark": "#4EC9B0",
"light": "#267F99",
"highContrast": "#4EC9B0"
}
},
{
"id": "ralsp.variable.mut",
"description": "Color for mutable variables",
"defaults": {
2019-07-19 13:43:36 +02:00
"dark": "#4EC9B0",
"light": "#267F99",
"highContrast": "#4EC9B0"
}
},
2019-05-23 12:26:38 +02:00
{
"id": "ralsp.module",
"description": "Color for modules",
"defaults": {
"dark": "#D4D4D4",
"light": "#000000",
"highContrast": "#FFFFFF"
}
2019-07-23 15:38:21 +02:00
},
{
"id": "ralsp.inlayHint",
"description": "Color for inlay hints",
"defaults": {
"dark": "#A0A0A0F0",
"light": "#747474",
"highContrast": "#BEBEBE"
}
}
2018-08-13 12:46:05 +02:00
]
2018-08-27 21:52:43 +02:00
}
}