assistant_context_editor: Put `use`s in the right spot (#23579)

Marshall Bowers created

This PR cleans up some `use` statements that weren't at the very top of
the module.

Release Notes:

- N/A

Change summary

crates/assistant_context_editor/src/context_editor.rs | 14 ++++++------
1 file changed, 7 insertions(+), 7 deletions(-)

Detailed changes

crates/assistant_context_editor/src/context_editor.rs 🔗

@@ -57,6 +57,13 @@ use workspace::{
     Workspace,
 };
 
+use crate::{slash_command::SlashCommandCompletionProvider, slash_command_picker};
+use crate::{
+    AssistantPatch, AssistantPatchStatus, CacheStatus, Content, Context, ContextEvent, ContextId,
+    InvokedSlashCommandId, InvokedSlashCommandStatus, Message, MessageId, MessageMetadata,
+    MessageStatus, ParsedSlashCommand, PendingSlashCommandStatus, RequestType,
+};
+
 actions!(
     assistant,
     [
@@ -80,13 +87,6 @@ pub enum InsertDraggedFiles {
 
 impl_internal_actions!(assistant, [InsertDraggedFiles]);
 
-use crate::{slash_command::SlashCommandCompletionProvider, slash_command_picker};
-use crate::{
-    AssistantPatch, AssistantPatchStatus, CacheStatus, Content, Context, ContextEvent, ContextId,
-    InvokedSlashCommandId, InvokedSlashCommandStatus, Message, MessageId, MessageMetadata,
-    MessageStatus, ParsedSlashCommand, PendingSlashCommandStatus, RequestType,
-};
-
 #[derive(Copy, Clone, Debug, PartialEq)]
 struct ScrollPosition {
     offset_before_cursor: gpui::Point<f32>,