vscode-js-debug
vscode-js-debug copied to clipboard
Allow to hide "[[Prototype]]" portion from the debug view
When debugging, the "[[Prototype]]" portion is not very useful. Option to hide them will declutter the limited space. Can you provide an option to hide the "[[Prototype]]" portion of the variables in the debug view?
Some previous issues in vscode repo related to this: https://github.com/microsoft/vscode/issues/19950 https://github.com/microsoft/vscode/issues/54125 https://github.com/microsoft/vscode/issues/60478
I'm not a big fan of this. Maybe a more generalized solution would be a button in the title of the Variables view that hides properties with presentationHint.visiblity === 'internal'
. Thoughts @roblourens?
I'm not opposed to a button or a setting for that
Hi, is there any update on this?
Hi, is there any update on this?
I was experimenting with customPropertiesGenerator
and it seems to be possible to hide [[Prototype]]
on regular objects since that feature was introduced (poc ext)
Ideally hidden by default and keep option to show it only when needed.