2018-07-30 18:58:49 +00:00
|
|
|
{
|
2018-09-16 09:54:24 +00:00
|
|
|
"name": "ra-lsp",
|
|
|
|
"displayName": "ra-lsp",
|
2018-12-08 20:56:31 +00:00
|
|
|
"description": "An alternative rust language server to the RLS",
|
|
|
|
"preview": true,
|
|
|
|
"private": true,
|
2018-08-27 19:52:43 +00:00
|
|
|
"version": "0.0.1",
|
|
|
|
"publisher": "matklad",
|
|
|
|
"repository": {
|
2018-09-16 09:54:24 +00:00
|
|
|
"url": "https://github.com/matklad/rust-analyzer/"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Other"
|
2018-08-10 22:04:09 +00:00
|
|
|
],
|
2018-08-27 19:52:43 +00:00
|
|
|
"engines": {
|
2019-02-12 15:31:11 +00:00
|
|
|
"vscode": "^1.31.0"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"vscode:prepublish": "npm run compile",
|
2018-12-08 21:09:32 +00:00
|
|
|
"package": "vsce package",
|
2019-04-01 17:11:22 +00:00
|
|
|
"compile": "tsc -p ./ && shx cp src/utils/terminateProcess.sh out/utils/terminateProcess.sh",
|
2018-08-27 19:52:43 +00:00
|
|
|
"watch": "tsc -watch -p ./",
|
2018-10-08 21:36:47 +00:00
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
2018-10-09 20:56:15 +00:00
|
|
|
"fix": "prettier **/*.{json,ts} --write && tslint --project . --fix",
|
2018-10-08 21:36:47 +00:00
|
|
|
"lint": "tslint --project .",
|
|
|
|
"prettier": "prettier **/*.{json,ts}",
|
2019-01-15 16:15:39 +00:00
|
|
|
"travis": "npm run compile && npm run lint && npm run prettier -- --list-different"
|
2018-10-08 21:36:47 +00:00
|
|
|
},
|
|
|
|
"prettier": {
|
2018-10-08 21:38:33 +00:00
|
|
|
"tabWidth": 4,
|
|
|
|
"singleQuote": true
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-02-10 10:06:33 +00:00
|
|
|
"vscode-languageclient": "^5.3.0-next.1"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-02-07 19:55:09 +00:00
|
|
|
"@types/mocha": "^5.2.5",
|
2019-02-10 10:32:45 +00:00
|
|
|
"@types/node": "^10.12.24",
|
2019-02-07 19:55:09 +00:00
|
|
|
"prettier": "^1.16.4",
|
2019-01-13 18:43:13 +00:00
|
|
|
"tslint": "^5.12.1",
|
2019-02-07 19:55:09 +00:00
|
|
|
"tslint-config-prettier": "^1.18.0",
|
|
|
|
"typescript": "^3.3.1",
|
2019-02-10 10:32:45 +00:00
|
|
|
"vsce": "^1.57.0",
|
2019-04-01 17:11:22 +00:00
|
|
|
"vscode": "^1.1.29",
|
|
|
|
"shx": "^0.3.1"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
"activationEvents": [
|
2019-01-29 17:08:02 +00:00
|
|
|
"onLanguage:rust",
|
|
|
|
"onCommand:rust-analyzer.analyzerStatus",
|
2019-03-13 13:14:30 +00:00
|
|
|
"onCommand:rust-analyzer.collectGarbage",
|
|
|
|
"workspaceContains:**/Cargo.toml"
|
2018-08-13 10:46:05 +00:00
|
|
|
],
|
2018-08-27 19:52:43 +00:00
|
|
|
"main": "./out/extension",
|
|
|
|
"contributes": {
|
|
|
|
"taskDefinitions": [
|
|
|
|
{
|
|
|
|
"type": "cargo",
|
|
|
|
"required": [
|
|
|
|
"command"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"label": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"command": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"args": {
|
|
|
|
"type": "array"
|
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"type": "object"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"commands": [
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.syntaxTree",
|
2019-03-03 19:21:40 +00:00
|
|
|
"title": "Show Syntax Tree",
|
2019-01-29 17:16:14 +00:00
|
|
|
"category": "Rust Analyzer"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.extendSelection",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Extend selection",
|
|
|
|
"category": "Rust Analyzer"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.matchingBrace",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Find matching brace",
|
|
|
|
"category": "Rust Analyzer"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.parentModule",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Locate parent module",
|
|
|
|
"category": "Rust Analyzer"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.joinLines",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Join lines",
|
|
|
|
"category": "Rust Analyzer"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.run",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Run",
|
|
|
|
"category": "Rust Analyzer"
|
2019-01-22 21:15:03 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.analyzerStatus",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Status",
|
|
|
|
"category": "Rust Analyzer"
|
2019-01-25 16:11:58 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.collectGarbage",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Run garbage collection",
|
|
|
|
"category": "Rust Analyzer"
|
2018-08-27 19:52:43 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"keybindings": [
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.parentModule",
|
2018-08-27 19:52:43 +00:00
|
|
|
"key": "ctrl+u",
|
|
|
|
"when": "editorTextFocus && editorLangId == rust"
|
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.matchingBrace",
|
2018-08-27 19:52:43 +00:00
|
|
|
"key": "ctrl+shift+m",
|
|
|
|
"when": "editorTextFocus && editorLangId == rust"
|
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.extendSelection",
|
2018-12-08 20:48:50 +00:00
|
|
|
"key": "shift+alt+right",
|
2018-08-27 19:52:43 +00:00
|
|
|
"when": "editorTextFocus && editorLangId == rust"
|
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.joinLines",
|
2018-08-27 19:52:43 +00:00
|
|
|
"key": "ctrl+shift+j",
|
|
|
|
"when": "editorTextFocus && editorLangId == rust"
|
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.run",
|
2018-08-27 19:52:43 +00:00
|
|
|
"key": "ctrl+r",
|
|
|
|
"when": "editorTextFocus && editorLangId == rust"
|
|
|
|
}
|
2018-08-13 10:46:05 +00:00
|
|
|
],
|
2018-09-29 19:27:41 +00:00
|
|
|
"configuration": {
|
|
|
|
"type": "object",
|
2018-10-06 20:53:12 +00:00
|
|
|
"title": "Rust Analyzer",
|
2018-09-29 19:27:41 +00:00
|
|
|
"properties": {
|
2019-01-28 11:43:07 +00:00
|
|
|
"rust-analyzer.highlightingOn": {
|
2018-09-29 19:27:41 +00:00
|
|
|
"type": "boolean",
|
2019-02-26 06:56:11 +00:00
|
|
|
"default": false,
|
2018-09-29 19:27:41 +00:00
|
|
|
"description": "Highlight Rust code (overrides built-in syntax highlighting)"
|
2018-12-20 12:05:41 +00:00
|
|
|
},
|
2019-03-06 09:34:38 +00:00
|
|
|
"rust-analyzer.showWorkspaceLoadedNotification": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"description": "Show notification when workspace was loaded"
|
|
|
|
},
|
2019-02-07 10:37:36 +00:00
|
|
|
"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 11:43:07 +00:00
|
|
|
"rust-analyzer.raLspServerPath": {
|
2019-01-05 15:28:41 +00:00
|
|
|
"type": [
|
|
|
|
"string"
|
|
|
|
],
|
|
|
|
"default": "ra_lsp_server",
|
|
|
|
"description": "Path to ra_lsp_server executable"
|
|
|
|
},
|
2019-03-18 21:35:47 +00:00
|
|
|
"rust-analyzer.enableCargoWatchOnStartup": {
|
2019-03-21 11:56:25 +00:00
|
|
|
"type": "string",
|
|
|
|
"default": "ask",
|
|
|
|
"enum": [
|
|
|
|
"ask",
|
|
|
|
"enabled",
|
|
|
|
"disabled"
|
|
|
|
],
|
|
|
|
"enumDescriptions": [
|
|
|
|
"Asks each time whether to run `cargo watch`",
|
|
|
|
"`cargo watch` is always started",
|
|
|
|
"Don't start `cargo watch`"
|
|
|
|
],
|
|
|
|
"description": "Whether to run `cargo watch` on startup"
|
2019-03-18 21:35:47 +00:00
|
|
|
},
|
2019-01-28 11:43:07 +00:00
|
|
|
"rust-analyzer.trace.server": {
|
2018-12-20 12:05:41 +00:00
|
|
|
"type": "string",
|
|
|
|
"scope": "window",
|
|
|
|
"enum": [
|
|
|
|
"off",
|
|
|
|
"messages",
|
|
|
|
"verbose"
|
|
|
|
],
|
|
|
|
"default": "off",
|
2019-01-28 11:43:07 +00:00
|
|
|
"description": "Trace requests to the ra_lsp_server"
|
2018-09-29 19:27:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-12-30 17:24:07 +00:00
|
|
|
"problemPatterns": [
|
2018-08-27 19:52:43 +00:00
|
|
|
{
|
|
|
|
"name": "rustc",
|
2018-12-30 17:24:07 +00:00
|
|
|
"patterns": [
|
2018-08-27 19:52:43 +00:00
|
|
|
{
|
2018-12-30 17:24:07 +00:00
|
|
|
"regexp": "^(warning|warn|error)(?:\\[(.*?)\\])?: (.*)$",
|
2018-08-27 19:52:43 +00:00
|
|
|
"severity": 1,
|
2018-12-30 17:24:07 +00:00
|
|
|
"code": 2,
|
|
|
|
"message": 3
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
{
|
2018-12-30 17:24:07 +00:00
|
|
|
"regexp": "^[\\s->=]*(.*?):(\\d*):(\\d*)\\s*$",
|
|
|
|
"file": 1,
|
|
|
|
"line": 2,
|
|
|
|
"column": 3
|
2018-08-27 19:52:43 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2018-12-30 17:24:07 +00:00
|
|
|
],
|
|
|
|
"problemMatchers": [
|
|
|
|
{
|
|
|
|
"name": "rustc",
|
|
|
|
"fileLocation": [
|
|
|
|
"relative",
|
|
|
|
"${workspaceRoot}"
|
|
|
|
],
|
2019-02-18 18:12:54 +00:00
|
|
|
"pattern": "$rustc"
|
2018-12-30 17:24:07 +00:00
|
|
|
}
|
2018-08-13 10:46:05 +00:00
|
|
|
]
|
2018-08-27 19:52:43 +00:00
|
|
|
}
|
2019-03-10 14:20:27 +00:00
|
|
|
}
|