mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-03 00:39:51 +00:00
Bind add_selection_{above,below}
to cmd-alt-{up,down}
This commit is contained in:
parent
17258d4f8c
commit
07ef0d474e
1 changed files with 2 additions and 2 deletions
|
@ -151,12 +151,12 @@ pub fn init(app: &mut MutableAppContext) {
|
||||||
Some("BufferView"),
|
Some("BufferView"),
|
||||||
),
|
),
|
||||||
Binding::new(
|
Binding::new(
|
||||||
"ctrl-shift-up",
|
"cmd-alt-up",
|
||||||
"buffer:add_selection_above",
|
"buffer:add_selection_above",
|
||||||
Some("BufferView"),
|
Some("BufferView"),
|
||||||
),
|
),
|
||||||
Binding::new(
|
Binding::new(
|
||||||
"ctrl-shift-down",
|
"cmd-alt-down",
|
||||||
"buffer:add_selection_below",
|
"buffer:add_selection_below",
|
||||||
Some("BufferView"),
|
Some("BufferView"),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue