mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-24 19:10:24 +00:00
aacd80ee4a
Some checks are pending
CI / Check Postgres and Protobuf migrations, mergability (push) Waiting to run
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Linux) Build Remote Server (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Linux x86_x64 release bundle (push) Blocked by required conditions
CI / Linux arm64 release bundle (push) Blocked by required conditions
CI / Auto release preview (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Docs / Check formatting (push) Waiting to run
Script / ShellCheck Scripts (push) Waiting to run
Closes #23015 Release Notes: - Improved which keybindings are selected for display. Now later entries within `bindings` will take precedence. The default keymaps have been updated accordingly.
33 lines
1,017 B
JSON
33 lines
1,017 B
JSON
[
|
|
// Standard macOS bindings
|
|
{
|
|
"bindings": {
|
|
"home": "menu::SelectFirst",
|
|
"shift-pageup": "menu::SelectFirst",
|
|
"pageup": "menu::SelectFirst",
|
|
"cmd-up": "menu::SelectFirst",
|
|
"end": "menu::SelectLast",
|
|
"shift-pagedown": "menu::SelectLast",
|
|
"pagedown": "menu::SelectLast",
|
|
"cmd-down": "menu::SelectLast",
|
|
"tab": "menu::SelectNext",
|
|
"ctrl-n": "menu::SelectNext",
|
|
"down": "menu::SelectNext",
|
|
"shift-tab": "menu::SelectPrev",
|
|
"ctrl-p": "menu::SelectPrev",
|
|
"up": "menu::SelectPrev",
|
|
"enter": "menu::Confirm",
|
|
"ctrl-enter": "menu::SecondaryConfirm",
|
|
"cmd-enter": "menu::SecondaryConfirm",
|
|
"ctrl-escape": "menu::Cancel",
|
|
"cmd-escape": "menu::Cancel",
|
|
"ctrl-c": "menu::Cancel",
|
|
"escape": "menu::Cancel",
|
|
"cmd-q": "storybook::Quit",
|
|
"backspace": "editor::Backspace",
|
|
"delete": "editor::Delete",
|
|
"left": "editor::MoveLeft",
|
|
"right": "editor::MoveRight"
|
|
}
|
|
}
|
|
]
|