diff --git a/crates/assistant/src/slash_command/file_command.rs b/crates/assistant/src/slash_command/file_command.rs index 39647540299a650386e14db53015bdf19cb73b74..9e344aa510d03bdf91ff8da2d91b6769d3f4e151 100644 --- a/crates/assistant/src/slash_command/file_command.rs +++ b/crates/assistant/src/slash_command/file_command.rs @@ -21,8 +21,6 @@ use ui::prelude::*; use util::ResultExt; use workspace::Workspace; -use crate::slash_command::diagnostics_command::collect_buffer_diagnostics; - pub(crate) struct FileSlashCommand; impl FileSlashCommand { @@ -543,8 +541,6 @@ pub fn append_buffer_to_output( output.text.push('\n'); let section_ix = output.sections.len(); - collect_buffer_diagnostics(output, buffer, false); - output.sections.insert( section_ix, build_entry_output_section(prev_len..output.text.len(), path, false, None),