You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, makes LSP requests asynchronously within an FZF popup, which causes issues for null-ls. Can be made to work with the following config option:
require("fzf-lua").setup({
lsp= {
-- make lsp requests synchronous so they work with null-lsasync_or_timeout=3000,
},
})