Better fix to nil on vimfunc (#178)

This commit is contained in:
Shadman 2021-04-14 18:25:34 +06:00 committed by GitHub
parent dac7a290df
commit 2a222d7ad6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -3,14 +3,14 @@ local EvalFuncComponent = require('lualine.component'):new()
EvalFuncComponent.update_status = function(self)
local component = self.options[1]
local ok, status = pcall(EvalFuncComponent.eval_lua, component)
if not ok or status == 'nil' then
status = EvalFuncComponent.vim_function(component)
end
if not ok then status = EvalFuncComponent.vim_function(component) end
return status
end
EvalFuncComponent.eval_lua = function(code)
return tostring(loadstring('return ' .. code)())
local result = loadstring('return ' .. code)()
assert(result, 'String expected got nil')
return tostring(result)
end
EvalFuncComponent.vim_function = function(name)