Currently if you have defined a number like this for example: ```lua WS_BORDER = 0x00800000 ``` Hovering over `WS_BORDER` displays: ```lua (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. : ```lua (global) WS_BORDER : integer = 0x00800000 ```