Skip to content

Commit cd6b4a9

Browse files
blink-so[bot]ThomasK33
andcommitted
fix: change tree file add success message to debug level
- Change success notification from INFO to DEBUG to avoid popup - User requested less verbose notifications for successful file additions - Error notifications remain at ERROR level for visibility Co-authored-by: ThomasK33 <[email protected]>
1 parent 782cd56 commit cd6b4a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/claudecode/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ function M._create_commands()
335335
if success_count > 0 then
336336
local message = success_count == 1 and "Added 1 file to Claude context"
337337
or string.format("Added %d files to Claude context", success_count)
338-
vim.notify(message, vim.log.levels.INFO, { title = "ClaudeCode" })
338+
vim.notify(message, vim.log.levels.DEBUG, { title = "ClaudeCode" })
339339
else
340340
vim.notify("Failed to add any files", vim.log.levels.ERROR, { title = "ClaudeCode" })
341341
end

0 commit comments

Comments
 (0)