We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afb8aab commit 161e75eCopy full SHA for 161e75e
lua/parrot/provider/anthropic.lua
@@ -109,7 +109,7 @@ end
109
function Anthropic:notify_thinking(thinking)
110
vim.schedule(function()
111
local config = require("parrot.config")
112
- if not config.options.show_thinking_window then
+ if config.options.show_thinking_window ~= nil and not config.options.show_thinking_window then
113
return
114
end
115
if not self._thinking_buf or not vim.api.nvim_buf_is_valid(self._thinking_buf) then
0 commit comments