-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Description
Description
When pressing Ctrl+W to close a local terminal tab that has a running process (e.g., a CLI tool), Tabby shows a confirmation popup asking if I want to close the tab. There doesn't seem to be a way to disable this behavior for local connections.
Configuration Attempted
I've tried all the following settings in config.yaml, but the popup still appears:
# In the profile itself
profiles:
- type: local
name: MyProfile
warnOnClose: false
disableDynamicTitle: true
# In terminal section
terminal:
warnOnClose: false
warnOnCloseAll: false
confirmOnExit: false
# At root level
confirmOnClose: false
# In profileDefaults
profileDefaults:
local:
warnOnClose: false
disableDynamicTitle: trueNone of these settings prevent the confirmation popup from appearing when closing a local tab with a running process.
Expected Behavior
When warnOnClose: false is set (either in the profile, profileDefaults, or terminal section), closing a local tab should NOT show a confirmation popup, even if there's a running process.
Current Behavior
The confirmation popup still appears regardless of the warnOnClose setting for local connections.
Environment
- OS: Windows 11
- Tabby Version: Latest
Related Issues
- Warn on close on local connection tab #9105 - Mentions that warn-on-close was implemented for SSH but not local connections
- SSH Warn on close #2512 - SSH warn on close implementation
Feature Request
Please add a working configuration option to disable the close confirmation for local terminal tabs, similar to how it works for SSH connections.