-
Notifications
You must be signed in to change notification settings - Fork 326
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
feat: configurable autoclose when shell exits #1699
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,5 +21,8 @@ | |
"window:confirmclose": true, | ||
"window:savelastwindow": true, | ||
"telemetry:enabled": true, | ||
"term:copyonselect": true | ||
"term:copyonselect": true, | ||
"term:autoclose": true, | ||
"term:autocloseonerror": false, | ||
"term:autoclosedelay": 2000 | ||
Comment on lines
+24
to
+27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Terminal auto-close settings need documentation While the auto-close feature is mentioned in the README, the specific configuration options (
🔗 Analysis chainLGTM! Terminal autoclose settings are well-structured. The new terminal settings follow consistent naming conventions and provide sensible defaults:
Let's verify these settings are properly documented: 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Check if these settings are documented in README or docs
rg -i "term:autoclose|term:autocloseonerror|term:autoclosedelay" docs/ README.md || echo "Settings documentation not found"
Length of output: 157 Script: #!/bin/bash
# Search for any markdown files containing terminal-related documentation
fd -e md | xargs rg -i "terminal|term" -A 2 -B 2
# Look for schema files and check terminal settings
fd "schema|config" -e json | xargs rg -i "term:autoclose|term:autocloseonerror|term:autoclosedelay" -A 2 -B 2
# Check for comments near the settings definition
rg -C 5 "term:autoclose" pkg/wconfig/defaultconfig/settings.json
Length of output: 13695 |
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Add the missing terminal auto-close setting
The
cmd:closeonexit
setting should be added as suggested. This is consistent with:pkg/wconfig/defaultconfig/widgets.json
🔗 Analysis chain
Use the extracted settings consistently.
The
termAutoClose
setting is retrieved but not used in the block definition.Consider if this setting should affect the block definition:
meta: { view: "term", controller: "shell", "cmd:closeonexitforce": termAutoCloseOnError ?? false, "cmd:closeonexitdelay": termAutoCloseDelay ?? 2000, + "cmd:closeonexit": termAutoClose ?? true, },
🏁 Scripts executed
The following scripts were executed for the analysis:
Error: No shell scripts found
Script:
Length of output: 6226