mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 04:20:46 +00:00
Bind Outdent
and Indent
respectively to cmd-[
and cmd-]
This commit is contained in:
parent
a2c4205c5c
commit
ac88003c19
1 changed files with 2 additions and 0 deletions
|
@ -179,6 +179,8 @@ pub fn init(cx: &mut MutableAppContext) {
|
||||||
ConfirmCompletion(None),
|
ConfirmCompletion(None),
|
||||||
Some("Editor && showing_completions"),
|
Some("Editor && showing_completions"),
|
||||||
),
|
),
|
||||||
|
Binding::new("cmd-[", Outdent, Some("Editor")),
|
||||||
|
Binding::new("cmd-]", Indent, Some("Editor")),
|
||||||
Binding::new("ctrl-shift-K", DeleteLine, Some("Editor")),
|
Binding::new("ctrl-shift-K", DeleteLine, Some("Editor")),
|
||||||
Binding::new("alt-backspace", DeleteToPreviousWordStart, Some("Editor")),
|
Binding::new("alt-backspace", DeleteToPreviousWordStart, Some("Editor")),
|
||||||
Binding::new("alt-h", DeleteToPreviousWordStart, Some("Editor")),
|
Binding::new("alt-h", DeleteToPreviousWordStart, Some("Editor")),
|
||||||
|
|
Loading…
Reference in a new issue