diff --git a/crates/assistant/Cargo.toml b/crates/assistant/Cargo.toml index e5f769ede0..605867820f 100644 --- a/crates/assistant/Cargo.toml +++ b/crates/assistant/Cargo.toml @@ -71,6 +71,7 @@ strsim.workspace = true telemetry_events.workspace = true terminal.workspace = true terminal_view.workspace = true +text.workspace = true theme.workspace = true toml.workspace = true ui.workspace = true diff --git a/crates/assistant/src/prompt_library.rs b/crates/assistant/src/prompt_library.rs index 769db54225..965a8e3af6 100644 --- a/crates/assistant/src/prompt_library.rs +++ b/crates/assistant/src/prompt_library.rs @@ -36,6 +36,7 @@ use std::{ sync::{atomic::AtomicBool, Arc}, time::Duration, }; +use text::LineEnding; use theme::ThemeSettings; use ui::{ div, prelude::*, IconButtonShape, ListItem, ListItemSpacing, ParentElement, Render, @@ -1302,10 +1303,12 @@ impl PromptStore { let bodies = self.bodies; self.executor.spawn(async move { let txn = env.read_txn()?; - Ok(bodies + let mut prompt = bodies .get(&txn, &id)? .ok_or_else(|| anyhow!("prompt not found"))? - .into()) + .into(); + LineEnding::normalize(&mut prompt); + Ok(prompt) }) } diff --git a/crates/assistant_slash_command/src/assistant_slash_command.rs b/crates/assistant_slash_command/src/assistant_slash_command.rs index b33c2ce50b..72836dd4b6 100644 --- a/crates/assistant_slash_command/src/assistant_slash_command.rs +++ b/crates/assistant_slash_command/src/assistant_slash_command.rs @@ -60,7 +60,7 @@ pub type RenderFoldPlaceholder = Arc< + Fn(ElementId, Arc, &mut WindowContext) -> AnyElement, >; -#[derive(Default)] +#[derive(Debug, Default)] pub struct SlashCommandOutput { pub text: String, pub sections: Vec>,