mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-13 05:42:59 +00:00
Bind also ctrl-d
to buffer:delete
This commit is contained in:
parent
cee9509127
commit
618cb8ac18
1 changed files with 1 additions and 0 deletions
|
@ -31,6 +31,7 @@ pub fn init(app: &mut MutableAppContext) {
|
|||
app.add_bindings(vec![
|
||||
Binding::new("backspace", "buffer:backspace", Some("BufferView")),
|
||||
Binding::new("delete", "buffer:delete", Some("BufferView")),
|
||||
Binding::new("ctrl-d", "buffer:delete", Some("BufferView")),
|
||||
Binding::new("enter", "buffer:newline", Some("BufferView")),
|
||||
Binding::new("ctrl-shift-K", "buffer:delete_line", Some("BufferView")),
|
||||
Binding::new("cmd-x", "buffer:cut", Some("BufferView")),
|
||||
|
|
Loading…
Reference in a new issue