How to display hex value in hours in vscode?

I started testing VSCode on Linux, and I would like to see the hexadecimal value of the variable next to its value. I need this because the variable is a mask, so it consists of 0 and 1 in certain positions. I was not able to find a setting or something similar to add it, is this possible? I am using C ++ code. I see that the addresses are in hexadecimal, so is there a way to see the value of the variable in hexadecimal?

+4
source share
1 answer

No, this is currently not possible. However, there is a function request for this.

Please visit https://github.com/Microsoft/vscode/issues/28025 and click the thumb icon if you want this feature.

+1
source

Source: https://habr.com/ru/post/1657361/


All Articles