Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat: add close_on_exit terminal configuration option#63

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
alvarosevilla95 wants to merge1 commit intocoder:main
base:main
Choose a base branch
Loading
fromalvarosevilla95:close-on-exit
Open
Show file tree
Hide file tree
Changes fromall commits
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
1 change: 1 addition & 0 deletionsREADME.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -157,6 +157,7 @@ For deep technical details, see [ARCHITECTURE.md](./ARCHITECTURE.md).
split_width_percentage = 0.30,
provider = "auto", -- "auto", "snacks", or "native"
auto_close = true,
close_on_exit = true, -- Close terminal window when process exits
},

-- Diff Integration
Expand Down
4 changes: 4 additions & 0 deletionslua/claudecode/terminal.lua
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -24,6 +24,7 @@ local config = {
show_native_term_exit_tip = true,
terminal_cmd = nil,
auto_close = true,
close_on_exit = true, -- When true, closes terminal window when process exits
}

-- Lazy load providers
Expand DownExpand Up@@ -102,6 +103,7 @@ local function build_config(opts_override)
split_side = effective_config.split_side,
split_width_percentage = effective_config.split_width_percentage,
auto_close = effective_config.auto_close,
close_on_exit = effective_config.close_on_exit,
}
end

Expand DownExpand Up@@ -210,6 +212,8 @@ function M.setup(user_term_config, p_terminal_cmd)
config[k] = v
elseif k == "auto_close" and type(v) == "boolean" then
config[k] = v
elseif k == "close_on_exit" and type(v) == "boolean" then
config[k] = v
else
vim.notify("claudecode.terminal.setup: Invalid value for " .. k .. ": " .. tostring(v), vim.log.levels.WARN)
end
Expand Down
4 changes: 4 additions & 0 deletionslua/claudecode/terminal/native.lua
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -98,6 +98,10 @@ local function open_terminal(cmd_string, env_table, effective_config, focus)

cleanup_state() -- Clear our managed state first

if not effective_config.close_on_exit then
return
end

if current_winid_for_job and vim.api.nvim_win_is_valid(current_winid_for_job) then
if current_bufnr_for_job and vim.api.nvim_buf_is_valid(current_bufnr_for_job) then
-- Optional: Check if the window still holds the same terminal buffer
Expand Down
4 changes: 3 additions & 1 deletionlua/claudecode/terminal/snacks.lua
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -29,7 +29,9 @@ local function setup_terminal_events(term_instance, config)
-- Clean up
terminal = nil
vim.schedule(function()
term_instance:close({ buf = true })
if config.close_on_exit then
term_instance:close({ buf = true })
end
vim.cmd.checktime()
end)
end, { buf = true })
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp