rust/code/package.json
2018-08-27 22:52:43 +03:00

149 lines
4.3 KiB
JSON

{
"name": "rcf-lsp",
"displayName": "rcf-lsp",
"description": "",
"version": "0.0.1",
"publisher": "matklad",
"repository": {
"url": "https://github.com/matklad/libsyntax2/"
},
"categories": [
"Other"
],
"engines": {
"vscode": "^1.26.0"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"vscode-languageclient": "^4.4.0"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"vsce": "^1.42.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
},
"activationEvents": [
"onLanguage:rust"
],
"main": "./out/extension",
"contributes": {
"taskDefinitions": [
{
"type": "cargo",
"required": [
"command"
],
"properties": {
"label": {
"type": "string"
},
"command": {
"type": "string"
},
"args": {
"type": "array"
},
"env": {
"type": "object"
}
}
}
],
"commands": [
{
"command": "libsyntax-rust.createFile",
"title": "Show Rust syntax tree"
},
{
"command": "libsyntax-rust.syntaxTree",
"title": "Show Rust syntax tree"
},
{
"command": "libsyntax-rust.extendSelection",
"title": "Rust Extend Selection"
},
{
"command": "libsyntax-rust.matchingBrace",
"title": "Rust Matching Brace"
},
{
"command": "libsyntax-rust.parentModule",
"title": "Rust Parent Module"
},
{
"command": "libsyntax-rust.joinLines",
"title": "Rust Join Lines"
},
{
"command": "libsyntax-rust.run",
"title": "Rust Run"
}
],
"keybindings": [
{
"command": "libsyntax-rust.parentModule",
"key": "ctrl+u",
"when": "editorTextFocus && editorLangId == rust"
},
{
"command": "libsyntax-rust.matchingBrace",
"key": "ctrl+shift+m",
"when": "editorTextFocus && editorLangId == rust"
},
{
"command": "libsyntax-rust.extendSelection",
"key": "ctrl+w",
"when": "editorTextFocus && editorLangId == rust"
},
{
"command": "libsyntax-rust.joinLines",
"key": "ctrl+shift+j",
"when": "editorTextFocus && editorLangId == rust"
},
{
"command": "libsyntax-rust.run",
"key": "ctrl+r",
"when": "editorTextFocus && editorLangId == rust"
}
],
"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
}
]
}
]
}
}