Skip to content
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ Also see [here](/lua/CopilotChat/config.lua):
error_header = '**Error** ', -- Header to use for errors
separator = '---', -- Separator to use in chat


show_folds = true, -- Shows folds for sections in chat
show_help = true, -- Shows help message as virtual lines when waiting for user input
auto_follow_cursor = true, -- Auto-follow cursor in chat
Expand Down
1 change: 1 addition & 0 deletions lua/CopilotChat/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ local select = require('CopilotChat.select')
---@field prompts table<string, CopilotChat.config.prompt|string>?
---@field window CopilotChat.config.window?
---@field mappings CopilotChat.config.mappings?

return {
debug = false, -- Enable debug logging
proxy = nil, -- [protocol://]host[:port] Use this proxy
Expand Down
2 changes: 1 addition & 1 deletion lua/CopilotChat/spinner.lua
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ function Spinner:finish()

timer:stop()
timer:close()

vim.api.nvim_buf_del_extmark(self.bufnr, self.ns, self.ns)
vim.notify('Done!', vim.log.levels.INFO, { title = self.title })
end

return Spinner