fix multi workspace setup (#31)

This commit is contained in:
Jan Steinke
2022-01-23 14:37:09 +01:00
committed by GitHub
parent 8feac6c677
commit da71801866

View File

@@ -33,7 +33,7 @@ local function get_lsp_clients()
end
local c = {}
for _, client in ipairs(clients) do
for _, client in pairs(clients) do
table.insert(c, client.name)
end
return table.concat(c, "|")