assistant: Extract ContextEditor and ContextHistory to their own modules (#23422)

This PR extracts the `ContextEditor` and `ContextHistory`
implementations into their own modules so that it's clearer which parts
depend on other constructs in the `assistant` crate.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-01-21 14:10:13 -05:00 committed by GitHub
parent c825bb492d
commit 51b6cbf9ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 3830 additions and 3799 deletions

View file

@ -2,6 +2,8 @@
pub mod assistant_panel;
mod context;
mod context_editor;
mod context_history;
pub mod context_store;
mod inline_assistant;
mod patch;