File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
crates/chat-cli/src/cli/chat Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1773,6 +1773,8 @@ impl ChatContext {
17731773 self . output,
17741774 style:: Print ( format!( "\n Total: ~{} 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 {
You can’t perform that action at this time.
0 commit comments