rust/editors/code/src
bors bc1b0bfa7f Auto merge of #15308 - vsrs:runnable_env_per_platform, r=HKalbasi
Runnable env per platform

This PR adds an option to specify runnables `env` per platform (win32, linux, etc.):
```
{
    "rust-analyzer.runnables.extraEnv": [
            {
                "platform": "win32",
                "env": {
                    "SCITER_BIN_FOLDER": "C:\\Projects\\3rd\\sciter-js-sdk\\bin\\windows\\x64",
                }
            },
            {
                "platform":["linux","darwin"],
                "env": {
                    "SCITER_BIN_FOLDER": "/home/vit/Projects/sciter/sciter-js-sdk/bin/linux/x64",
                }
            }
        ]
}
```
2023-07-28 07:03:09 +00:00
..
ast_inspector.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
bootstrap.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
client.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
commands.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
config.ts Platform specific runnables env 2023-07-18 17:51:57 +07:00
ctx.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
debug.ts Use notification command links for debugger installation 2023-07-20 15:41:08 +02:00
dependencies_provider.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
diagnostics.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
lsp_ext.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
main.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
nullable.ts editor/code: Enable noUncheckedIndexedAccess ts option 2023-07-06 16:17:02 +09:00
persistent_state.ts editor/code: Sort the style to import types 2023-07-11 06:12:00 +09:00
run.ts Fix lint 2023-07-18 18:06:20 +07:00
rust_project.ts fmt 2023-03-13 13:30:19 -04:00
snippets.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
tasks.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
toolchain.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00
undefinable.ts editor/code: Enable noUncheckedIndexedAccess ts option 2023-07-06 16:17:02 +09:00
util.ts editor/code: Re-apply code format 2023-07-13 22:44:29 +09:00