rust/editors/code/package.json

278 lines
9.4 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-02-12 16:31:11 +01:00
"vscode": "^1.31.0"
2018-08-27 21:52:43 +02:00
},
"scripts": {
"vscode:prepublish": "npm run compile",
"package": "vsce package",
2019-04-01 19:11:22 +02:00
"compile": "tsc -p ./ && shx cp src/utils/terminateProcess.sh out/utils/terminateProcess.sh",
2018-08-27 21:52:43 +02:00
"watch": "tsc -watch -p ./",
2018-10-08 23:36:47 +02:00
"postinstall": "node ./node_modules/vscode/bin/install",
"fix": "prettier **/*.{json,ts} --write && tslint --project . --fix",
2018-10-08 23:36:47 +02:00
"lint": "tslint --project .",
"prettier": "prettier **/*.{json,ts}",
"travis": "npm run compile && npm run lint && npm run prettier -- --list-different"
2018-10-08 23:36:47 +02:00
},
"prettier": {
2018-10-08 23:38:33 +02:00
"tabWidth": 4,
"singleQuote": true
2018-08-27 21:52:43 +02:00
},
"dependencies": {
"vscode-languageclient": "^5.3.0-next.1"
2018-08-27 21:52:43 +02:00
},
"devDependencies": {
2019-02-07 20:55:09 +01:00
"@types/mocha": "^5.2.5",
2019-02-10 11:32:45 +01:00
"@types/node": "^10.12.24",
2019-02-07 20:55:09 +01:00
"prettier": "^1.16.4",
2019-01-13 19:43:13 +01:00
"tslint": "^5.12.1",
2019-02-07 20:55:09 +01:00
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.1",
2019-02-10 11:32:45 +01:00
"vsce": "^1.57.0",
2019-04-01 19:11:22 +02:00
"vscode": "^1.1.29",
"shx": "^0.3.1"
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
],
2018-08-27 21:52:43 +02: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 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-01-28 12:43:07 +01:00
"command": "rust-analyzer.extendSelection",
2019-01-29 18:16:14 +01:00
"title": "Extend selection",
"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"
2019-04-13 22:13:21 +02:00
},
{
"command": "rust-analyzer.startCargoWatch",
"title": "Start Cargo Watch",
"category": "Rust Analyzer"
},
{
"command": "rust-analyzer.stopCargoWatch",
"title": "Stop Cargo Watch",
"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.extendSelection",
"key": "shift+alt+right",
2018-08-27 21:52:43 +02:00
"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.showWorkspaceLoadedNotification": {
"type": "boolean",
"default": true,
"description": "Show notification when workspace was loaded"
},
"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.enableCargoWatchOnStartup": {
"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-04-02 08:43:02 +02:00
"rust-analyzer.cargo-watch.check-arguments": {
"type": "string",
"description": "`cargo-watch` check arguments. (e.g: `--features=\"shumway,pdf\"` will run as `cargo watch -x \"check --features=\"shumway,pdf\"\"` )",
"default": ""
},
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
},
"rust-analyzer.trace.cargo-watch": {
"type": "string",
"scope": "window",
"enum": [
"off",
"error",
"verbose"
],
"default": "off",
"description": "Trace output of cargo-watch"
}
}
},
"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
}
]
}
],
"problemMatchers": [
{
"name": "rustc",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": "$rustc"
2019-04-14 12:45:36 +02:00
},
{
"name": "rustc-watch",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"background": {
"beginsPattern": "^\\[Running\\b",
"endsPattern": "^\\[Finished running\\b"
},
"pattern": "$rustc"
}
2018-08-13 12:46:05 +02:00
]
2018-08-27 21:52:43 +02:00
}
2019-04-13 22:13:21 +02:00
}