diff options
| author | Joel Daniel Rico <joeldanielrico@gmail.com> | 2024-06-17 02:48:37 -0700 |
|---|---|---|
| committer | Joel Daniel Rico <joeldanielrico@gmail.com> | 2024-06-17 04:08:32 -0700 |
| commit | 5934eeda558d233a4e67e1ad16475a563f9a3d6e (patch) | |
| tree | 46705ddc40073d386b481d3d5c0335c86a8ab5df /src/tools/rust-analyzer/editors/code/package.json | |
| parent | e0c1b2bf75c742af8a6637e25e9b5148de8c444a (diff) | |
| download | rust-5934eeda558d233a4e67e1ad16475a563f9a3d6e.tar.gz rust-5934eeda558d233a4e67e1ad16475a563f9a3d6e.zip | |
feat: add `toggleLSPLogs` command
add `toggleLSPLogs` command update docs to reflect new command
Diffstat (limited to 'src/tools/rust-analyzer/editors/code/package.json')
| -rw-r--r-- | src/tools/rust-analyzer/editors/code/package.json | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tools/rust-analyzer/editors/code/package.json b/src/tools/rust-analyzer/editors/code/package.json index b447106d999..db2a989106f 100644 --- a/src/tools/rust-analyzer/editors/code/package.json +++ b/src/tools/rust-analyzer/editors/code/package.json @@ -300,6 +300,11 @@ "command": "rust-analyzer.toggleCheckOnSave", "title": "Toggle Check on Save", "category": "rust-analyzer" + }, + { + "command": "rust-analyzer.toggleLSPLogs", + "title": "Toggle LSP Logs", + "category": "rust-analyzer" } ], "keybindings": [ @@ -3123,6 +3128,10 @@ { "command": "rust-analyzer.viewMemoryLayout", "when": "inRustProject" + }, + { + "command": "rust-analyzer.toggleLSPLogs", + "when": "inRustProject" } ], "editor/context": [ |
