mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 03:25:59 +00:00
40f60ebe2d
Earlier versions where a simple find-replace of `cmd` => `ctrl`. In this PR, I've gone over every keybinding individually and checked them. Release Notes: - Removed the `ShowContextMenu` action, it's only usage was in the collab panel and it's been rebound to `SecondaryConfirm`
23 lines
661 B
JSON
23 lines
661 B
JSON
[
|
|
// Standard macOS bindings
|
|
{
|
|
"bindings": {
|
|
"up": "menu::SelectPrev",
|
|
"pageup": "menu::SelectFirst",
|
|
"shift-pageup": "menu::SelectFirst",
|
|
"ctrl-p": "menu::SelectPrev",
|
|
"down": "menu::SelectNext",
|
|
"pagedown": "menu::SelectLast",
|
|
"shift-pagedown": "menu::SelectFirst",
|
|
"ctrl-n": "menu::SelectNext",
|
|
"cmd-up": "menu::SelectFirst",
|
|
"cmd-down": "menu::SelectLast",
|
|
"enter": "menu::Confirm",
|
|
"ctrl-enter": "menu::SecondaryConfirm",
|
|
"cmd-enter": "menu::SecondaryConfirm",
|
|
"escape": "menu::Cancel",
|
|
"ctrl-c": "menu::Cancel",
|
|
"cmd-q": "storybook::Quit"
|
|
}
|
|
}
|
|
]
|