vim-lua
vim-lua copied to clipboard
Fix float in table and recognize bools
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