diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 4 | ||||
-rw-r--r-- | .vscode/tasks.json | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index b1bd98d4a..2e5c61735 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json | |||
@@ -45,7 +45,7 @@ | |||
45 | "<node_internals>/**/*.js" | 45 | "<node_internals>/**/*.js" |
46 | ], | 46 | ], |
47 | "env": { | 47 | "env": { |
48 | "__RA_LSP_SERVER_DEBUG": "${workspaceFolder}/target/debug/ra_lsp_server" | 48 | "__RA_LSP_SERVER_DEBUG": "${workspaceFolder}/target/debug/rust-analyzer" |
49 | } | 49 | } |
50 | }, | 50 | }, |
51 | { | 51 | { |
@@ -59,7 +59,7 @@ | |||
59 | "name": "Attach To Server", | 59 | "name": "Attach To Server", |
60 | "type": "lldb", | 60 | "type": "lldb", |
61 | "request": "attach", | 61 | "request": "attach", |
62 | "program": "${workspaceFolder}/target/debug/ra_lsp_server", | 62 | "program": "${workspaceFolder}/target/debug/rust-analyzer", |
63 | "pid": "${command:pickMyProcess}", | 63 | "pid": "${command:pickMyProcess}", |
64 | "sourceLanguages": [ | 64 | "sourceLanguages": [ |
65 | "rust" | 65 | "rust" |
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index fc9a8593b..4037e7cce 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json | |||
@@ -19,7 +19,7 @@ | |||
19 | "label": "Build Server", | 19 | "label": "Build Server", |
20 | "group": "build", | 20 | "group": "build", |
21 | "type": "shell", | 21 | "type": "shell", |
22 | "command": "cargo build --package ra_lsp_server", | 22 | "command": "cargo build --package rust-analyzer", |
23 | "problemMatcher": "$rustc" | 23 | "problemMatcher": "$rustc" |
24 | }, | 24 | }, |
25 | ] | 25 | ] |