Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/codeium/virtual_text.lua
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ end

function M.debounced_complete()
M.clear()
if config.options.virtual_text.manual or not server.is_healthy() or not M.filetype_enabled(vim.fn.bufnr("")) then
if config.options.virtual_text.manual or not server:is_healthy() or not M.filetype_enabled(vim.fn.bufnr("")) then
return
end
local current_buf = vim.fn.bufnr("")
Expand Down