Bind `add_selection_{above,below}` to `cmd-alt-{up,down}`

Antonio Scandurra created

Change summary

zed/src/editor/buffer_view.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

zed/src/editor/buffer_view.rs 🔗

@@ -151,12 +151,12 @@ pub fn init(app: &mut MutableAppContext) {
             Some("BufferView"),
         ),
         Binding::new(
-            "ctrl-shift-up",
+            "cmd-alt-up",
             "buffer:add_selection_above",
             Some("BufferView"),
         ),
         Binding::new(
-            "ctrl-shift-down",
+            "cmd-alt-down",
             "buffer:add_selection_below",
             Some("BufferView"),
         ),