Skip to content

Commit 922b4d4

Browse files
committed
fmt
1 parent 3a96cec commit 922b4d4

File tree

1 file changed

+3
-2
lines changed
  • crates/chat-cli/src/cli/chat

1 file changed

+3
-2
lines changed

crates/chat-cli/src/cli/chat/mod.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1773,6 +1773,8 @@ impl ChatContext {
17731773
self.output,
17741774
style::Print(format!("\nTotal: ~{} tokens\n\n", total_tokens)),
17751775
)?;
1776+
1777+
execute!(self.output, style::Print("\n"))?;
17761778
}
17771779

17781780
// Show last cached conversation summary if available, otherwise regenerate it
@@ -1792,11 +1794,10 @@ impl ChatContext {
17921794
style::SetAttribute(Attribute::Reset),
17931795
style::Print("\n\n"),
17941796
style::Print(&summary),
1795-
style::Print("\n\n")
1797+
style::Print("\n\n\n")
17961798
)?;
17971799
}
17981800
}
1799-
execute!(self.output, style::Print("\n"))?;
18001801
},
18011802
command::ContextSubcommand::Add { global, force, paths } => {
18021803
match context_manager.add_paths(paths.clone(), global, force).await {

0 commit comments

Comments
 (0)