Add C-w and C-u keymaps in vim mode (Fix #7691) (#7736)

Release Notes:
- Added C-w and C-u keymaps in vim mode
([#7691](https://github.com/zed-industries/zed/issues/7691))
This commit is contained in:
Yohann 2024-02-13 20:35:01 +01:00 committed by GitHub
parent fecb5a82f1
commit ecd9b93cb1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -485,7 +485,9 @@
"ctrl-x ctrl-a": "assistant::InlineAssist", // zed specific
"ctrl-x ctrl-c": "copilot::Suggest", // zed specific
"ctrl-x ctrl-l": "editor::ToggleCodeActions", // zed specific
"ctrl-x ctrl-z": "editor::Cancel"
"ctrl-x ctrl-z": "editor::Cancel",
"ctrl-w": "editor::DeleteToPreviousWordStart",
"ctrl-u": "editor::DeleteToBeginningOfLine"
}
},
{