-
Notifications
You must be signed in to change notification settings - Fork 8.4k
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
Feature Request: Ability to change what key/key sequence reopens or closes a profile session #16581
Comments
Good catch! Thanks for filing this. |
Can i help on this one? |
@skywalker290 We probably won't get to this ourselves, so we'd definitely appreciate the help! I'd caveat all this with the fact that we'll need to brainstorm what the settings would look like in the actual json, so we may change how the setting is parsed on review. I'd guess something like the following would be a good start: "profiles":
{
"defaults":
{
"closeOnExit": "never",
"closeKey": "ctrl+alt+q",
"reopenKey": "r"
|
Json format would help with this we can put data into one json structure and send it. |
Description of the new feature/enhancement
This feature request is related to this feature request:
#4379
Essentially, the ability to customize what key/key sequences reopens or closes a profile session. Currently Ctrl+D will close the terminal after exit and "Enter" will restart it. I would like to customize it so that "r" will restart the session and "" or "" will close the session for good. This is what MobaXterm uses and it would be nice to have it consistent as I use both regularly.
Proposed technical implementation details (optional)
Something like this in the json file:
"closeOnExit": "never",
{
"closeKey": "",
"reopenKey": "r"
}
The text was updated successfully, but these errors were encountered: