fixed the check if function 'WebDevIcons' exists
This commit is contained in:
parent
9424757111
commit
cde411d1b8
|
@ -15,7 +15,7 @@ local function Branch()
|
|||
return branch
|
||||
end
|
||||
ok = (vim.fn.exists('*WebDevIconsGetFileTypeSymbol'))
|
||||
if ok then
|
||||
if ok ~= 0 then
|
||||
local icon = ''
|
||||
return icon .. ' ' .. branch
|
||||
end
|
||||
|
|
|
@ -11,7 +11,7 @@ local function Filetype()
|
|||
return filetype
|
||||
end
|
||||
ok = (vim.fn.exists('*WebDevIconsGetFileTypeSymbol'))
|
||||
if ok then
|
||||
if ok ~= 0 then
|
||||
local icon = vim.call('WebDevIconsGetFileTypeSymbol')
|
||||
return icon .. ' ' .. filetype
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue