2018-07-30 13:58:49 -05:00
{
2018-09-16 04:54:24 -05:00
"name" : "ra-lsp" ,
"displayName" : "ra-lsp" ,
2018-12-08 14:56:31 -06:00
"description" : "An alternative rust language server to the RLS" ,
"preview" : true ,
"private" : true ,
2018-08-27 14:52:43 -05:00
"version" : "0.0.1" ,
"publisher" : "matklad" ,
"repository" : {
2018-09-16 04:54:24 -05:00
"url" : "https://github.com/matklad/rust-analyzer/"
2018-08-27 14:52:43 -05:00
} ,
"categories" : [
"Other"
2018-08-10 17:04:09 -05:00
] ,
2018-08-27 14:52:43 -05:00
"engines" : {
2018-12-15 13:33:09 -06:00
"vscode" : "^1.30.0"
2018-08-27 14:52:43 -05:00
} ,
"scripts" : {
"vscode:prepublish" : "npm run compile" ,
2018-12-08 15:09:32 -06:00
"package" : "vsce package" ,
2018-08-27 14:52:43 -05:00
"compile" : "tsc -p ./" ,
"watch" : "tsc -watch -p ./" ,
2018-10-08 16:36:47 -05:00
"postinstall" : "node ./node_modules/vscode/bin/install" ,
2018-10-09 15:56:15 -05:00
"fix" : "prettier **/*.{json,ts} --write && tslint --project . --fix" ,
2018-10-08 16:36:47 -05:00
"lint" : "tslint --project ." ,
"prettier" : "prettier **/*.{json,ts}" ,
2019-01-15 10:15:39 -06:00
"travis" : "npm run compile && npm run lint && npm run prettier -- --list-different"
2018-10-08 16:36:47 -05:00
} ,
"prettier" : {
2018-10-08 16:38:33 -05:00
"tabWidth" : 4 ,
"singleQuote" : true
2018-08-27 14:52:43 -05:00
} ,
"dependencies" : {
2018-12-15 13:33:09 -06:00
"vscode-languageclient" : "^5.2.1"
2018-08-27 14:52:43 -05:00
} ,
"devDependencies" : {
2018-10-08 16:36:47 -05:00
"@types/mocha" : "^2.2.42" ,
2019-01-13 12:43:13 -06:00
"@types/node" : "^8.10.39" ,
2018-12-08 14:56:31 -06:00
"prettier" : "^1.15.3" ,
2019-01-13 12:43:13 -06:00
"tslint" : "^5.12.1" ,
2018-12-08 14:56:31 -06:00
"tslint-config-prettier" : "^1.17.0" ,
2018-08-27 14:52:43 -05:00
"typescript" : "^2.6.1" ,
2019-01-13 12:43:13 -06:00
"vsce" : "^1.54.0" ,
2018-12-08 14:56:31 -06:00
"vscode" : "^1.1.26"
2018-08-27 14:52:43 -05:00
} ,
"activationEvents" : [
2019-01-29 11:08:02 -06:00
"onLanguage:rust" ,
"onCommand:rust-analyzer.analyzerStatus" ,
"onCommand:rust-analyzer.collectGarbage"
2018-08-13 05:46:05 -05:00
] ,
2018-08-27 14:52:43 -05: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 05:43:07 -06:00
"command" : "rust-analyzer.syntaxTree" ,
"title" : "rust-analyzer: syntax tree"
2018-08-27 14:52:43 -05:00
} ,
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.extendSelection" ,
"title" : "rust-analyzer: extend selection"
2018-08-27 14:52:43 -05:00
} ,
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.matchingBrace" ,
"title" : "rust-analyzer: matching brace"
2018-08-27 14:52:43 -05:00
} ,
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.parentModule" ,
"title" : "rust-analyzer: parent module"
2018-08-27 14:52:43 -05:00
} ,
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.joinLines" ,
"title" : "rust-analyzer: join lines"
2018-08-27 14:52:43 -05:00
} ,
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.run" ,
"title" : "rust-analyzer: run"
2019-01-22 15:15:03 -06:00
} ,
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.analyzerStatus" ,
"title" : "rust-analyzer: status"
2019-01-25 10:11:58 -06:00
} ,
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.collectGarbage" ,
"title" : "rust-analyzer: run gc"
2018-08-27 14:52:43 -05:00
}
] ,
"keybindings" : [
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.parentModule" ,
2018-08-27 14:52:43 -05:00
"key" : "ctrl+u" ,
"when" : "editorTextFocus && editorLangId == rust"
} ,
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.matchingBrace" ,
2018-08-27 14:52:43 -05:00
"key" : "ctrl+shift+m" ,
"when" : "editorTextFocus && editorLangId == rust"
} ,
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.extendSelection" ,
2018-12-08 14:48:50 -06:00
"key" : "shift+alt+right" ,
2018-08-27 14:52:43 -05:00
"when" : "editorTextFocus && editorLangId == rust"
} ,
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.joinLines" ,
2018-08-27 14:52:43 -05:00
"key" : "ctrl+shift+j" ,
"when" : "editorTextFocus && editorLangId == rust"
} ,
{
2019-01-28 05:43:07 -06:00
"command" : "rust-analyzer.run" ,
2018-08-27 14:52:43 -05:00
"key" : "ctrl+r" ,
"when" : "editorTextFocus && editorLangId == rust"
}
2018-08-13 05:46:05 -05:00
] ,
2018-09-29 14:27:41 -05:00
"configuration" : {
"type" : "object" ,
2018-10-06 15:53:12 -05:00
"title" : "Rust Analyzer" ,
2018-09-29 14:27:41 -05:00
"properties" : {
2019-01-28 05:43:07 -06:00
"rust-analyzer.highlightingOn" : {
2018-09-29 14:27:41 -05:00
"type" : "boolean" ,
"default" : true ,
"description" : "Highlight Rust code (overrides built-in syntax highlighting)"
2018-12-20 06:05:41 -06:00
} ,
2019-01-28 05:43:07 -06:00
"rust-analyzer.raLspServerPath" : {
2019-01-05 09:28:41 -06:00
"type" : [
"string"
] ,
"default" : "ra_lsp_server" ,
"description" : "Path to ra_lsp_server executable"
} ,
2019-01-28 05:43:07 -06:00
"rust-analyzer.trace.server" : {
2018-12-20 06:05:41 -06:00
"type" : "string" ,
"scope" : "window" ,
"enum" : [
"off" ,
"messages" ,
"verbose"
] ,
"default" : "off" ,
2019-01-28 05:43:07 -06:00
"description" : "Trace requests to the ra_lsp_server"
2018-09-29 14:27:41 -05:00
}
}
} ,
2018-12-30 11:24:07 -06:00
"problemPatterns" : [
2018-08-27 14:52:43 -05:00
{
2018-12-30 11:30:14 -06:00
"//comment" : "named multiline problem patterns are not parsed properly in vscode at the moment, when fixed in vscode replace both \"pattern\": [...] below with \"pattern\": \"$rustc\"" ,
2018-08-27 14:52:43 -05:00
"name" : "rustc" ,
2018-12-30 11:24:07 -06:00
"patterns" : [
2018-08-27 14:52:43 -05:00
{
2018-12-30 11:24:07 -06:00
"regexp" : "^(warning|warn|error)(?:\\[(.*?)\\])?: (.*)$" ,
2018-08-27 14:52:43 -05:00
"severity" : 1 ,
2018-12-30 11:24:07 -06:00
"code" : 2 ,
"message" : 3
2018-08-27 14:52:43 -05:00
} ,
{
2018-12-30 11:24:07 -06:00
"regexp" : "^[\\s->=]*(.*?):(\\d*):(\\d*)\\s*$" ,
"file" : 1 ,
"line" : 2 ,
"column" : 3
2018-08-27 14:52:43 -05:00
}
]
}
2018-12-30 11:24:07 -06:00
] ,
"problemMatchers" : [
{
"name" : "rustc" ,
"fileLocation" : [
"relative" ,
"${workspaceRoot}"
] ,
2018-12-30 11:30:14 -06:00
"pattern" : [
{
"regexp" : "^(warning|warn|error)(?:\\[(.*?)\\])?: (.*)$" ,
"severity" : 1 ,
"code" : 2 ,
"message" : 3
} ,
{
"regexp" : "^[\\s->=]*(.*?):(\\d*):(\\d*)\\s*$" ,
"file" : 1 ,
"line" : 2 ,
"column" : 3
}
]
2018-12-30 11:24:07 -06:00
} ,
{
"name" : "rustc-watch" ,
"fileLocation" : [
"relative" ,
"${workspaceRoot}"
] ,
"background" : {
"beginsPattern" : "^\\[Running " ,
"endsPattern" : "^(\\[Finished running\\]|To learn more, run the command again with --verbose\\.)$"
} ,
2018-12-30 11:30:14 -06:00
"pattern" : [
{
"regexp" : "^(warning|warn|error)(?:\\[(.*?)\\])?: (.*)$" ,
"severity" : 1 ,
"code" : 2 ,
"message" : 3
} ,
{
"regexp" : "^[\\s->=]*(.*?):(\\d*):(\\d*)\\s*$" ,
"file" : 1 ,
"line" : 2 ,
"column" : 3
}
]
2018-12-30 11:24:07 -06:00
}
2018-08-13 05:46:05 -05:00
]
2018-08-27 14:52:43 -05:00
}
2019-01-03 12:28:35 -06:00
}