This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---@param bufnr integer, | |
---@param client vim.lsp.Client | |
local function sign_in(bufnr, client) | |
client:request( | |
---@diagnostic disable-next-line: param-type-mismatch | |
'signIn', | |
vim.empty_dict(), | |
function(err, result) | |
if err then | |
vim.notify(err.message, vim.log.levels.ERROR) |