show symbol size in symbol list (#268)

* show symbol size in symbol list

* configs for show symbol size

* move symbol size config to config-schema
This commit is contained in:
BR-
2025-10-08 19:32:07 -07:00
committed by GitHub
parent 572afa8551
commit 781071761a
4 changed files with 47 additions and 2 deletions

View File

@@ -82,6 +82,27 @@
"name": "Space between args",
"description": "Adds a space between arguments in the diff output."
},
{
"id": "showSymbolSizes",
"type": "choice",
"default": "off",
"name": "Show symbol sizes",
"description": "Shows symbol sizes in the symbol view.",
"items": [
{
"value": "off",
"name": "Off"
},
{
"value": "hex",
"name": "Hex"
},
{
"value": "decimal",
"name": "Decimal"
}
]
},
{
"id": "combineDataSections",
"type": "boolean",
@@ -296,6 +317,7 @@
"properties": [
"functionRelocDiffs",
"demangler",
"showSymbolSizes",
"spaceBetweenArgs",
"combineDataSections",
"combineTextSections"