Add config for disabling hover memory layout data

This commit is contained in:
Yury Ivanou 2023-05-07 18:21:07 +03:00
parent ecc081d625
commit 4ed0fa8414
7 changed files with 63 additions and 10 deletions

View file

@ -955,7 +955,12 @@
"type": "boolean"
},
"rust-analyzer.hover.links.enable": {
"markdownDescription": "Use markdown syntax for links in hover.",
"markdownDescription": "Use markdown syntax for links on hover.",
"default": true,
"type": "boolean"
},
"rust-analyzer.hover.memory.layout.enable": {
"markdownDescription": "Whether to show memory layout data on hover.",
"default": true,
"type": "boolean"
},