caelestia/zed/keymap.json
2025-07-14 18:47:48 +10:00

18 lines
513 B
JSON

// Zed keymap
//
// For information on binding keys, see the Zed
// documentation: https://zed.dev/docs/key-bindings
//
// To see the default key bindings run `zed: open default keymap`
// from the command palette.
[
{
"context": "Editor",
"bindings": {
"ctrl-shift-up": "editor::MoveLineUp",
"ctrl-shift-down": "editor::MoveLineDown",
"alt-down": ["editor::SelectNext", { "replace_newest": false }],
"alt-up": ["editor::SelectPrevious", { "replace_newest": false }]
}
}
]