@@ -50,9 +50,9 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim):
50
50
config = true ,
51
51
keys = {
52
52
{ " <leader>ac" , " <cmd>ClaudeCode<cr>" , desc = " Toggle Claude" },
53
- { " <leader>as " , " <cmd>ClaudeCodeSendSelection<cr>" , mode = " v" , desc = " Send to Claude " },
53
+ { " <leader>av " , " <cmd>ClaudeCodeSendSelection<cr>" , mode = " v" , desc = " Send Visual Selection " },
54
54
-- Add file from nvim-tree or neo-tree
55
- { " <leader>ca " , " <cmd>ClaudeCodeTreeAddFile<cr>" , desc = " ClaudeCode: Add file from tree " , ft = { " NvimTree" , " neo-tree" } },
55
+ { " <leader>as " , " <cmd>ClaudeCodeTreeAddFile<cr>" , desc = " Send File From Tree " , ft = { " NvimTree" , " neo-tree" } },
56
56
},
57
57
}
58
58
```
@@ -62,9 +62,9 @@ That's it! For more configuration options, see [Advanced Setup](#advanced-setup)
62
62
## Usage
63
63
64
64
1 . ** Launch Claude** : Run ` :ClaudeCode ` to open Claude in a split terminal
65
- 2 . ** Send context** :
66
- - Select text and run ` :'<,'>ClaudeCodeSendSelection ` to send it to Claude
67
- - Use the keymap you configured to add a file from ` nvim-tree ` or ` neo-tree `
65
+ 2 . ** Send context** :
66
+ - Select text in visual mode and use ` <leader>av ` to send it to Claude
67
+ - In ` nvim-tree ` or ` neo-tree ` , press ` <leader>as ` on a file to add it to the context
68
68
3 . ** Let Claude work** : Claude can now:
69
69
- See your current file and selections in real-time
70
70
- Open files in your editor
0 commit comments