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
fix: use table.concat instead of vim.fn.join for provider list
The assert was joining providers with `vim.fn.join`, which calls into
Vimscript and can fail in fast event contexts (e.g. during async
completion).
Replaces it with Lua's built-in `table.concat`, removing the unnecessary
Vimscript bridge call and thus potential errors.
0 commit comments