aa844a9555
When the provided function takes an optional argument the previous implementation causes error.
9 lines
237 B
Lua
9 lines
237 B
Lua
local FunctionComponent = require('lualine.component'):new()
|
|
|
|
FunctionComponent.update_status = function(self)
|
|
-- 1st element in options table is the function provided by config
|
|
return self.options[1]()
|
|
end
|
|
|
|
return FunctionComponent
|