2019-01-18 10:59:08 +00:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
2020-02-16 17:28:14 +00:00
|
|
|
|
|
|
|
// NOTE: --disable-extensions
|
|
|
|
// Disable all installed extensions for increas performance of playground
|
2020-02-16 17:54:32 +00:00
|
|
|
// Disable all installed extensions to increase performance of the debug instance
|
|
|
|
// and prevent potential conflicts with other installed extensions.
|
2020-02-16 17:28:14 +00:00
|
|
|
|
2019-01-18 10:59:08 +00:00
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
2020-02-16 17:54:32 +00:00
|
|
|
// Used for testing the extension with the installed LSP server.
|
2019-12-29 23:15:39 +00:00
|
|
|
"name": "Run Extension",
|
2019-01-18 10:59:08 +00:00
|
|
|
"type": "extensionHost",
|
|
|
|
"request": "launch",
|
|
|
|
"runtimeExecutable": "${execPath}",
|
|
|
|
"args": [
|
2020-02-16 17:28:14 +00:00
|
|
|
"--disable-extensions",
|
2019-12-29 23:15:39 +00:00
|
|
|
"--extensionDevelopmentPath=${workspaceFolder}/editors/code"
|
2019-01-18 10:59:08 +00:00
|
|
|
],
|
2019-12-29 23:15:39 +00:00
|
|
|
"outFiles": [
|
2019-12-30 01:22:52 +00:00
|
|
|
"${workspaceFolder}/editors/code/out/**/*.js"
|
|
|
|
],
|
|
|
|
"preLaunchTask": "Build Extension"
|
|
|
|
},
|
|
|
|
{
|
2020-02-16 17:54:32 +00:00
|
|
|
// Used for testing theextension with a local build of the LSP server (in `target/debug`).
|
2019-12-30 01:22:52 +00:00
|
|
|
"name": "Run Extension (Dev Server)",
|
|
|
|
"type": "extensionHost",
|
|
|
|
"request": "launch",
|
|
|
|
"runtimeExecutable": "${execPath}",
|
|
|
|
"args": [
|
2020-02-16 17:28:14 +00:00
|
|
|
"--disable-extensions",
|
2019-12-30 01:22:52 +00:00
|
|
|
"--extensionDevelopmentPath=${workspaceFolder}/editors/code"
|
|
|
|
],
|
|
|
|
"outFiles": [
|
|
|
|
"${workspaceFolder}/editors/code/out/**/*.js"
|
2019-12-29 23:15:39 +00:00
|
|
|
],
|
2019-12-30 01:22:52 +00:00
|
|
|
"preLaunchTask": "Build Extension",
|
|
|
|
"env": {
|
|
|
|
"__RA_LSP_SERVER_DEBUG": "${workspaceFolder}/target/debug/ra_lsp_server"
|
|
|
|
}
|
2019-01-18 10:59:08 +00:00
|
|
|
},
|
|
|
|
{
|
2020-02-16 17:28:14 +00:00
|
|
|
// Attaching LLDB by Pid to lsp server
|
|
|
|
// NOTE: it requires root permission, also for better debugging
|
|
|
|
// if you want more than just assembler representation for ex:
|
|
|
|
// walk in file, you need debugging symbols.
|
|
|
|
// Project can build with it, for set - chane inside
|
|
|
|
// ./Cargo.toml field debug
|
|
|
|
"name": "Attach To Server",
|
2019-01-18 10:59:08 +00:00
|
|
|
"type": "lldb",
|
|
|
|
"request": "attach",
|
|
|
|
"program": "${workspaceFolder}/target/debug/ra_lsp_server",
|
|
|
|
"pid": "${command:pickMyProcess}",
|
2019-12-29 23:15:39 +00:00
|
|
|
"sourceLanguages": [
|
|
|
|
"rust"
|
|
|
|
]
|
2019-01-18 10:59:08 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|