vim-lua icon indicating copy to clipboard operation
vim-lua copied to clipboard

Fix float in table and recognize bools

Open idbrii opened this issue 3 years ago • 0 comments

Fixes:

    local works = 19.9e19
    local broke = {
            x = 19.9e19, -- showed as a Number and nothing
            x = 19.9, -- showed as two Numbers
    }

   local b = true -- shows as Constant instead of Boolean

idbrii avatar Jan 20 '22 02:01 idbrii