lua-language-server icon indicating copy to clipboard operation
lua-language-server copied to clipboard

Feature Request: Option for hexadecimals to not be displayed as decimals on mouseover

Open Lumariano opened this issue 8 months ago • 1 comments

Currently if you have defined a number like this for example:

WS_BORDER = 0x00800000

Hovering over WS_BORDER displays:

(global) WS_BORDER : integer = 8388608

Would it be possible to add an option so that numbers that are not defined as decimals are not resolved to decimals when hovering over them? I. e. :

(global) WS_BORDER : integer = 0x00800000

Lumariano avatar Feb 03 '25 13:02 Lumariano