minor: Setup default keymap directly in xtask docgen

Instantiating EditorView is a lot of machinery which is unnecessary:
the default keymap is exposed through the `default` function in the
keymap module.
This commit is contained in:
Michael Davis 2024-12-28 21:40:57 -05:00
parent 127567df8e
commit 073efe48f9
No known key found for this signature in database
2 changed files with 1 additions and 8 deletions

View file

@ -57,12 +57,6 @@ pub enum InsertEvent {
RequestCompletion,
}
impl Default for EditorView {
fn default() -> Self {
Self::new(Keymaps::default())
}
}
impl EditorView {
pub fn new(keymaps: Keymaps) -> Self {
Self {