馃敡 Where my dotfiles lives in harmony and peace, most of the time
at main 540 B view raw
1// Zed keymap 2// 3// For information on binding keys, see the Zed 4// documentation: https://zed.dev/docs/key-bindings 5// 6// To see the default key bindings run `zed: open default keymap` 7// from the command palette. 8[ 9 { 10 "context": "Editor", 11 "bindings": { 12 "ctrl-莽": [ 13 "editor::ToggleComments", 14 { 15 "advance_downwards": false 16 } 17 ], 18 "ctrl-shift-up": "editor::MoveLineUp", 19 "ctrl-shift-down": "editor::MoveLineDown", 20 "ctrl-shift-d": "editor::DuplicateSelection" 21 } 22 } 23]