```lua 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 ``` https://github.com/ldelossa/litee-calltree.nvim/issues/16#issuecomment-1166326694 In the above `litee-calltree` issue ticket, it seems that the function failed to skip unsupported LSP request