function M.multi_client_request(clients, method, params, handler, bufnr)
for _, client in ipairs(clients) do
if not client.supports_method(method) then
goto continue
end
client.request(method, params, handler, bufnr)
::continue::
end
end
ldelossa/litee-calltree.nvim#16 (comment)
In the above litee-calltree issue ticket, it seems that the function failed to skip unsupported LSP request