Skip to content

Commit 752c12e

Browse files
committed
feat: add demo video to README and remove verbose at-mention feedback
Change-Id: Iaf8d4f2f812c9ee0e02c79b9820969251770376e Signed-off-by: Thomas Kosiewski <[email protected]>
1 parent 22f0848 commit 752c12e

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
A Neovim plugin that integrates with Claude Code CLI to provide a seamless AI coding experience in Neovim.
88

9+
https://github.com/user-attachments/assets/c625d855-5f32-4a1f-8757-1a3150e2786d
10+
911
## Features
1012

1113
- 🔄 **Pure Neovim WebSocket Server** (implemented with Neovim built-ins)

docs/demo.mp4

22.6 MB
Binary file not shown.

lua/claudecode/selection.lua

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -602,13 +602,7 @@ function M.send_at_mention_for_visual_selection()
602602
-- It refers to the server instance from lua/claudecode/server/init.lua
603603
local success = M.server.broadcast("at_mentioned", params)
604604

605-
if success then
606-
vim.api.nvim_echo(
607-
{ { "At-mention sent to Claude for " .. vim.fn.fnamemodify(params.filePath, ":t"), "Normal" } },
608-
false,
609-
{}
610-
)
611-
else
605+
if not success then
612606
vim.api.nvim_err_writeln("Failed to send at-mention.")
613607
end
614608
end

0 commit comments

Comments
 (0)