[PR #748] Support remapping keybindings #24301

Closed
opened 2026-01-31 09:02:29 +00:00 by claunia · 0 comments
Owner

Original Pull Request: https://github.com/microsoft/terminal/pull/748

State: closed
Merged: Yes


Fixes #537.

Adds support for remappable keybindings in the profiles.json file. The keybindings look like the following:

    "keybindings": [
        {
            "keys": ["ctrl+t"],
            "command": "newTab"
        },
        {
            "keys": ["ctrl+shift+1"],
            "command": "newTabProfile0"
        },
        { "keys": ["ctrl+w"], "command": "closeTab" },
        { "keys": ["ctrl+tab"], "command": "nextTab" },
        { "keys": ["ctrl+shift+tab"], "command": "prevTab" },
        { "keys": ["ctrl+shift+pgup"], "command": "scrollUp" },
    ]
**Original Pull Request:** https://github.com/microsoft/terminal/pull/748 **State:** closed **Merged:** Yes --- Fixes #537. Adds support for remappable keybindings in the profiles.json file. The keybindings look like the following: ```json "keybindings": [ { "keys": ["ctrl+t"], "command": "newTab" }, { "keys": ["ctrl+shift+1"], "command": "newTabProfile0" }, { "keys": ["ctrl+w"], "command": "closeTab" }, { "keys": ["ctrl+tab"], "command": "nextTab" }, { "keys": ["ctrl+shift+tab"], "command": "prevTab" }, { "keys": ["ctrl+shift+pgup"], "command": "scrollUp" }, ] ```
claunia added the pull-request label 2026-01-31 09:02:29 +00:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#24301