Skip to content

feat: configurable auto-close and enhanced terminal architecture #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 11, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docs: add keybinds for ClaudeCode command arguments
- Add <leader>ar for :ClaudeCode --resume
- Add <leader>aC for :ClaudeCode --continue
- Document new command argument support in Commands section
- Maintain existing <leader>ac keybind for basic :ClaudeCode toggle

Change-Id: I1ac31cb81750f420aef682aaccfa9068c67808b9
Signed-off-by: Thomas Kosiewski <[email protected]>
  • Loading branch information
ThomasK33 committed Jun 9, 2025
commit d6ca95863c7c7b193624b93d0a27adc66c75cf1f
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ Using [lazy.nvim](https://github.com/folke/lazy.nvim):
keys = {
{ "<leader>a", nil, desc = "AI/Claude Code" },
{ "<leader>ac", "<cmd>ClaudeCode<cr>", desc = "Toggle Claude" },
{ "<leader>ar", "<cmd>ClaudeCode --resume<cr>", desc = "Resume Claude" },
{ "<leader>aC", "<cmd>ClaudeCode --continue<cr>", desc = "Continue Claude" },
{ "<leader>as", "<cmd>ClaudeCodeSend<cr>", mode = "v", desc = "Send to Claude" },
{
"<leader>as",
Expand Down Expand Up @@ -78,7 +80,9 @@ That's it! For more configuration options, see [Advanced Setup](#advanced-setup)

## Commands

- `:ClaudeCode` - Toggle the Claude Code terminal window
- `:ClaudeCode [arguments]` - Toggle the Claude Code terminal window (arguments are passed to claude command)
- `:ClaudeCode --resume` - Resume a previous Claude conversation
- `:ClaudeCode --continue` - Continue Claude conversation
- `:ClaudeCodeSend` - Send current visual selection to Claude, or add files from tree explorer
- `:ClaudeCodeTreeAdd` - Add selected file(s) from tree explorer to Claude context (also available via ClaudeCodeSend)
- `:ClaudeCodeAdd <file-path> [start-line] [end-line]` - Add a specific file or directory to Claude context by path with optional line range
Expand Down