diff options
| author | Adenine <adenine.dev@gmail.com> | 2023-06-18 20:31:46 -0400 |
|---|---|---|
| committer | Adenine <adenine.dev@gmail.com> | 2023-07-07 23:09:41 -0400 |
| commit | cfa15d49aaff173a055617a347eda6f6caa9e915 (patch) | |
| tree | 0859cd68f65a525ead599b6b6e5210fde05953eb /editors/code/package.json | |
| parent | db0add1ce92af58a92b2a80990044ae21713ae29 (diff) | |
| download | rust-cfa15d49aaff173a055617a347eda6f6caa9e915.tar.gz rust-cfa15d49aaff173a055617a347eda6f6caa9e915.zip | |
implement first pass of memory layout viewer
Diffstat (limited to 'editors/code/package.json')
| -rw-r--r-- | editors/code/package.json | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 1a1d76c6991..cd8b40e3557 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -284,6 +284,11 @@ "command": "rust-analyzer.revealDependency", "title": "Reveal File", "category": "rust-analyzer" + }, + { + "command": "rust-analyzer.viewMemoryLayout", + "title": "View Memory Layout", + "category": "rust-analyzer" } ], "keybindings": [ @@ -2067,6 +2072,10 @@ { "command": "rust-analyzer.openCargoToml", "when": "inRustProject" + }, + { + "command": "rust-analyzer.viewMemoryLayout", + "when": "inRustProject" } ], "editor/context": [ |
