refactor(providers): Let get_status() return a list of strings instead
This commit is contained in:
@@ -10,9 +10,9 @@ local M = {
|
||||
|
||||
function M.get_status()
|
||||
if not M.client then
|
||||
return 'No clients'
|
||||
return { 'No clients' }
|
||||
end
|
||||
return 'client: ' .. M.client.name
|
||||
return { 'client: ' .. M.client.name }
|
||||
end
|
||||
|
||||
local function get_params()
|
||||
|
||||
Reference in New Issue
Block a user