Skip to content

Commit 7376790

Browse files
committed
chore: update repository references and fix unused parameters
Change-Id: Idd77f0269fa46c81b5c323967cd9e2a436759263 Signed-off-by: Thomas Kosiewski <[email protected]>
1 parent 9880a74 commit 7376790

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Current priorities for development are:
100100
- Document LazyVim integration in README.md
101101
- Include clear local development instructions
102102
- Provide comprehensive installation guides
103-
- Document proper repository structure for ThomasK33/claudecode.nvim
103+
- Document proper repository structure for coder/claudecode.nvim
104104

105105
## User Commands
106106

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Claude Code Neovim Integration
22

3-
[![Tests](https://github.com/ThomasK33/claudecode.nvim/actions/workflows/test.yml/badge.svg)](https://github.com/ThomasK33/claudecode.nvim/actions/workflows/test.yml)
3+
[![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)
55
![Status](https://img.shields.io/badge/Status-alpha-orange)
66

@@ -31,7 +31,7 @@ Note: The terminal feature can use `Snacks.nvim` or the native Neovim terminal.
3131

3232
```lua
3333
{
34-
"ThomasK33/claudecode.nvim",
34+
"coder/claudecode.nvim",
3535
dependencies = {
3636
"nvim-lua/plenary.nvim",
3737
"folke/snacks.nvim", -- Added dependency
@@ -50,7 +50,7 @@ Note: The terminal feature can use `Snacks.nvim` or the native Neovim terminal.
5050

5151
```lua
5252
use {
53-
"ThomasK33/claudecode.nvim",
53+
"coder/claudecode.nvim",
5454
requires = {
5555
"nvim-lua/plenary.nvim",
5656
"folke/snacks.nvim", -- Added dependency
@@ -70,7 +70,7 @@ Add the following to your `lua/plugins/claudecode.lua`:
7070
```lua
7171
return {
7272
{
73-
"ThomasK33/claudecode.nvim",
73+
"coder/claudecode.nvim",
7474
dependencies = {
7575
"nvim-lua/plenary.nvim",
7676
"folke/snacks.nvim", -- Added dependency
@@ -246,7 +246,7 @@ This project uses [Nix](https://nixos.org/) for development environment manageme
246246
2. Clone the repository:
247247

248248
```bash
249-
git clone https://github.com/ThomasK33/claudecode.nvim
249+
git clone https://github.com/coder/claudecode.nvim
250250
cd claudecode.nvim
251251
```
252252

lua/claudecode/terminal.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ local function open_fallback_terminal(command, effective_term_config)
170170
-- Note: vim.api.nvim_win_set_width is not needed here again as [N]vsplit handles it.
171171

172172
managed_fallback_terminal_jobid = vim.fn.termopen(command, {
173-
on_exit = function(job_id, code, event)
173+
on_exit = function(job_id, _, _)
174174
vim.schedule(function()
175175
if job_id == managed_fallback_terminal_jobid then
176176
-- Ensure we are operating on the correct window and buffer before closing

tests/config_test.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ _G.vim = { ---@type vim_global_api
1414
end
1515
return copy
1616
end,
17-
notify = function(msg, level, opts) end,
17+
notify = function(_, _, _) end,
1818
log = {
1919
levels = {
2020
NONE = 0,

tests/lockfile_test.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if not _G.vim then
2222
return 1
2323
end,
2424
},
25-
notify = function(msg, level, opts) end,
25+
notify = function(_, _, _) end,
2626
log = {
2727
levels = {
2828
NONE = 0,

tests/selection_test.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ if not _G.vim then
187187
},
188188

189189
-- Added notify and log mocks
190-
notify = function(msg, level, opts) end,
190+
notify = function(_, _, _) end,
191191
log = {
192192
levels = {
193193
NONE = 0,

tests/server_test.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ if not _G.vim then
3333
end,
3434

3535
-- Added notify and log mocks
36-
notify = function(msg, level, opts) end,
36+
notify = function(_, _, _) end,
3737
log = {
3838
levels = {
3939
NONE = 0,

0 commit comments

Comments
 (0)