Skip to content

Commit ec8b274

Browse files
committed
docs: update status to beta and improve command documentation
Change-Id: Iaa05374793c755db76705b6e4c4053b4b2beebe7 Signed-off-by: Thomas Kosiewski <[email protected]>
1 parent bb8f08b commit ec8b274

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/claude.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,3 @@ jobs:
3434
uses: anthropics/claude-code-action@beta
3535
with:
3636
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
37-

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ claudecode.nvim/
3535
| Lock file management | ✅ Done | - | Basic implementation complete |
3636
| Selection tracking | ✅ Done | - | Enhanced with multi-mode support |
3737
| MCP tools | 🚧 Started | Medium | Basic framework, need more tools |
38-
| Tests | ✅ Done | - | 55 tests passing, comprehensive coverage |
38+
| Tests | ✅ Done | - | 56 tests passing, comprehensive coverage |
3939
| CI pipeline | ✅ Done | - | GitHub Actions configured |
4040
| Documentation | ✅ Done | - | Complete documentation |
4141

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Tests](https://github.com/coder/claudecode.nvim/actions/workflows/test.yml/badge.svg)](https://github.com/coder/claudecode.nvim/actions/workflows/test.yml)
44
![Neovim version](https://img.shields.io/badge/Neovim-0.8%2B-green)
5-
![Status](https://img.shields.io/badge/Status-alpha-orange)
5+
![Status](https://img.shields.io/badge/Status-beta-blue)
66

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

@@ -222,14 +222,19 @@ require("claudecode").setup({
222222
223223
## Commands
224224
225-
- `:ClaudeCodeStart` - Start the Claude Code integration server
226-
- `:ClaudeCodeStop` - Stop the server
227-
- `:ClaudeCodeStatus` - Show connection status
228225
- `:ClaudeCodeSend` - Send current selection to Claude
229226
- `:ClaudeCode` - Toggle the Claude Code interactive terminal window
230227
- `:ClaudeCodeOpen` - Open (or focus) the Claude Code terminal window
231228
- `:ClaudeCodeClose` - Close the Claude Code terminal window
232229
230+
Note: The server starts automatically when the first command is used. To manually control the server, use the Lua API:
231+
232+
```lua
233+
require("claudecode").start() -- Start server
234+
require("claudecode").stop() -- Stop server
235+
require("claudecode").status() -- Check status
236+
```
237+
233238
## Keymaps
234239

235240
No default keymaps are provided. Add your own in your configuration:

0 commit comments

Comments
 (0)