zed/crates/vim/src
Marshall Bowers 6ef32374d6
Add command_palette_hooks crate (#8398)
This PR introduces a new `command_palette_hooks` crate that contains the
types used to hook into the behavior of the command palette.

The `CommandPaletteFilter` was previously extracted to the `copilot`
crate in #7095, solely because that was the earliest ancestor of the
crates that depended on it.

The `CommandPaletteInterceptor` was still defined in `command_palette`
itself.

Both of these types were consumed by other crates wanting to influence
the behavior of the command palette, but required taking a dependency on
the entire `command_palette` crate in order to gain access to these
hooks.

By moving them out into their own crate, we can improve the compile
order and make crates like `vim` able to begin building sooner without
having to wait for `command_palette` to finish compiling.

Here's a comparison of the compilation graph before and after (ignore
the timings):

#### Before

<img width="332" alt="Screenshot 2024-02-25 at 12 42 29 PM"
src="https://github.com/zed-industries/zed/assets/1486634/a57c662e-fbc2-41ab-9e30-cca17afa6c73">

#### After

<img width="362" alt="Screenshot 2024-02-25 at 12 51 15 PM"
src="https://github.com/zed-industries/zed/assets/1486634/c1a6d29c-b607-4604-8f1b-e5d318bf8849">

Release Notes:

- N/A
2024-02-25 13:21:20 -05:00
..
normal Add option to either use system clipboard or vim clipboard (#7936) 2024-02-22 10:12:29 -07:00
test First pass at making a linux keymap (#8082) 2024-02-20 13:51:54 -08:00
command.rs Add command_palette_hooks crate (#8398) 2024-02-25 13:21:20 -05:00
editor_events.rs vim: Fix renaming (#7714) 2024-02-12 22:28:26 -07:00
insert.rs Add option to either use system clipboard or vim clipboard (#7936) 2024-02-22 10:12:29 -07:00
mode_indicator.rs vim lifecycle (#7647) 2024-02-10 16:21:13 -07:00
motion.rs fix vim panics (#8245) 2024-02-23 08:31:41 -07:00
normal.rs Add option to either use system clipboard or vim clipboard (#7936) 2024-02-22 10:12:29 -07:00
object.rs Add new argument vim text object (#7791) 2024-02-23 19:37:13 -07:00
state.rs Add option to either use system clipboard or vim clipboard (#7936) 2024-02-22 10:12:29 -07:00
test.rs Allow typing space in workspace::SendKeystrokes (#8288) 2024-02-23 10:40:12 -07:00
utils.rs Add option to either use system clipboard or vim clipboard (#7936) 2024-02-22 10:12:29 -07:00
vim.rs Add command_palette_hooks crate (#8398) 2024-02-25 13:21:20 -05:00
visual.rs Add option to either use system clipboard or vim clipboard (#7936) 2024-02-22 10:12:29 -07:00