diff options
| author | Lukas Wirth <lukastw97@gmail.com> | 2024-05-23 19:23:04 +0200 |
|---|---|---|
| committer | Lukas Wirth <lukastw97@gmail.com> | 2024-05-23 20:12:31 +0200 |
| commit | f93256ca42afb93f2dada055bb695c30d7abccb3 (patch) | |
| tree | bedae987010423e6ce11f402041658e2c66a3b4d /src/tools/rust-analyzer/editors/code | |
| parent | 616fdd04bb8768dd332701ca970849815469075f (diff) | |
| download | rust-f93256ca42afb93f2dada055bb695c30d7abccb3.tar.gz rust-f93256ca42afb93f2dada055bb695c30d7abccb3.zip | |
Allow sysroots to only consist of the source root dir
Diffstat (limited to 'src/tools/rust-analyzer/editors/code')
| -rw-r--r-- | src/tools/rust-analyzer/editors/code/src/ctx.ts | 6 | ||||
| -rw-r--r-- | src/tools/rust-analyzer/editors/code/src/lsp_ext.ts | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/tools/rust-analyzer/editors/code/src/ctx.ts b/src/tools/rust-analyzer/editors/code/src/ctx.ts index 5b683dccdc2..474e18b722f 100644 --- a/src/tools/rust-analyzer/editors/code/src/ctx.ts +++ b/src/tools/rust-analyzer/editors/code/src/ctx.ts @@ -472,12 +472,6 @@ export class Ctx implements RustAnalyzerExtensionApi { if (status.message) { statusBar.tooltip.appendText(status.message); } - if (status.workspaceInfo) { - if (statusBar.tooltip.value) { - statusBar.tooltip.appendMarkdown("\n\n---\n\n"); - } - statusBar.tooltip.appendMarkdown(status.workspaceInfo); - } if (statusBar.tooltip.value) { statusBar.tooltip.appendMarkdown("\n\n---\n\n"); } diff --git a/src/tools/rust-analyzer/editors/code/src/lsp_ext.ts b/src/tools/rust-analyzer/editors/code/src/lsp_ext.ts index 7d6b16b0197..9a7a4aae959 100644 --- a/src/tools/rust-analyzer/editors/code/src/lsp_ext.ts +++ b/src/tools/rust-analyzer/editors/code/src/lsp_ext.ts @@ -241,7 +241,6 @@ export type ServerStatusParams = { health: "ok" | "warning" | "error"; quiescent: boolean; message?: string; - workspaceInfo?: string; }; export type SsrParams = { query: string; |
