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 12:35:01 -07:00
committed by GitHub
parent fecb5a82f1
commit ecd9b93cb1
+3 -1
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"
}
},
{