rust/editors/code/package.json

167 lines
4.9 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",
2018-08-27 21:52:43 +02:00
"description": "",
"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": {
"vscode": "^1.26.0"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
2018-10-08 23:36:47 +02:00
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "tslint --project .",
"prettier": "prettier **/*.{json,ts}",
"travis": "npm run compile && npm run lint && npm run prettier --list-different"
},
"prettier": {
2018-10-08 23:38:33 +02:00
"tabWidth": 4,
"singleQuote": true
2018-08-27 21:52:43 +02:00
},
"dependencies": {
"vscode-languageclient": "^4.4.0"
},
"devDependencies": {
2018-10-08 23:36:47 +02:00
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.34",
"prettier": "^1.14.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
2018-08-27 21:52:43 +02:00
"typescript": "^2.6.1",
2018-10-08 23:36:47 +02:00
"vsce": "^1.51.1",
"vscode": "^1.1.21"
2018-08-27 21:52:43 +02:00
},
"activationEvents": [
"onLanguage:rust"
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": [
{
2018-09-16 11:54:24 +02:00
"command": "ra-lsp.syntaxTree",
2018-08-27 21:52:43 +02:00
"title": "Show Rust syntax tree"
},
{
2018-09-16 11:54:24 +02:00
"command": "ra-lsp.extendSelection",
2018-08-27 21:52:43 +02:00
"title": "Rust Extend Selection"
},
{
2018-09-16 11:54:24 +02:00
"command": "ra-lsp.matchingBrace",
2018-08-27 21:52:43 +02:00
"title": "Rust Matching Brace"
},
{
2018-09-16 11:54:24 +02:00
"command": "ra-lsp.parentModule",
2018-08-27 21:52:43 +02:00
"title": "Rust Parent Module"
},
{
2018-09-16 11:54:24 +02:00
"command": "ra-lsp.joinLines",
2018-08-27 21:52:43 +02:00
"title": "Rust Join Lines"
},
{
2018-09-16 11:54:24 +02:00
"command": "ra-lsp.run",
2018-08-27 21:52:43 +02:00
"title": "Rust Run"
}
],
"keybindings": [
{
2018-09-16 11:54:24 +02:00
"command": "ra-lsp.parentModule",
2018-08-27 21:52:43 +02:00
"key": "ctrl+u",
"when": "editorTextFocus && editorLangId == rust"
},
{
2018-09-16 11:54:24 +02:00
"command": "ra-lsp.matchingBrace",
2018-08-27 21:52:43 +02:00
"key": "ctrl+shift+m",
"when": "editorTextFocus && editorLangId == rust"
},
{
2018-09-16 11:54:24 +02:00
"command": "ra-lsp.extendSelection",
2018-08-27 21:52:43 +02:00
"key": "ctrl+w",
"when": "editorTextFocus && editorLangId == rust"
},
{
2018-09-16 11:54:24 +02:00
"command": "ra-lsp.joinLines",
2018-08-27 21:52:43 +02:00
"key": "ctrl+shift+j",
"when": "editorTextFocus && editorLangId == rust"
},
{
2018-09-16 11:54:24 +02:00
"command": "ra-lsp.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": {
"ra-lsp.highlightingOn": {
"type": "boolean",
"default": true,
"description": "Highlight Rust code (overrides built-in syntax highlighting)"
}
}
},
2018-08-27 21:52:43 +02:00
"problemMatchers": [
{
"name": "rustc",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": [
{
"regexp": "^(warning|warn|error)(\\[(.*)\\])?: (.*)$",
"severity": 1,
"message": 4,
"code": 3
},
{
"regexp": "^([\\s->=]*(.*):(\\d*):(\\d*)|.*)$",
"file": 2,
"line": 3,
"column": 4
},
{
"regexp": "^.*$"
},
{
"regexp": "^([\\s->=]*(.*):(\\d*):(\\d*)|.*)$",
"file": 2,
"line": 3,
"column": 4
}
]
}
2018-08-13 12:46:05 +02:00
]
2018-08-27 21:52:43 +02:00
}
2018-07-30 20:58:49 +02:00
}