mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 19:02:07 +00:00
Confirm completion on tab key as well as enter key
This commit is contained in:
parent
39152bc85f
commit
6e33f14218
1 changed files with 1 additions and 0 deletions
|
@ -146,6 +146,7 @@ pub fn init(cx: &mut MutableAppContext, path_openers: &mut Vec<Box<dyn PathOpene
|
|||
Some("Editor && completing"),
|
||||
),
|
||||
Binding::new("tab", Tab, Some("Editor")),
|
||||
Binding::new("tab", ConfirmCompletion(None), Some("Editor && completing")),
|
||||
Binding::new("shift-tab", Outdent, Some("Editor")),
|
||||
Binding::new("ctrl-shift-K", DeleteLine, Some("Editor")),
|
||||
Binding::new(
|
||||
|
|
Loading…
Reference in a new issue