style: format v0.8.34 PR integrations
This commit is contained in:
+1
-1
@@ -90,4 +90,4 @@ apps/
|
||||
.claude/codemap_*
|
||||
|
||||
# Maintainer-internal design notes (trade-secret material, never published)
|
||||
.private/
|
||||
.private/
|
||||
|
||||
@@ -2372,4 +2372,4 @@ mod tests {
|
||||
}
|
||||
out
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -373,4 +373,4 @@ mod tests {
|
||||
ranks.dedup();
|
||||
assert_eq!(ranks.len(), sections.len(), "ranks must be unique");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1408,9 +1408,15 @@ async fn run_event_loop(
|
||||
let persisted = app
|
||||
.current_session_id
|
||||
.as_deref()
|
||||
.and_then(|id| SessionManager::default_location().ok()?.load_session(id).ok())
|
||||
.and_then(|id| {
|
||||
SessionManager::default_location()
|
||||
.ok()?
|
||||
.load_session(id)
|
||||
.ok()
|
||||
})
|
||||
.map(|s| s.metadata.title);
|
||||
app.session_title = persisted.or_else(|| derive_session_title(&app.api_messages));
|
||||
app.session_title =
|
||||
persisted.or_else(|| derive_session_title(&app.api_messages));
|
||||
}
|
||||
}
|
||||
EngineEvent::CompactionStarted { message, .. } => {
|
||||
@@ -9806,4 +9812,4 @@ fn extract_reasoning_header(text: &str) -> Option<String> {
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests;
|
||||
mod tests;
|
||||
|
||||
@@ -659,8 +659,7 @@ impl Renderable for ComposerWidget<'_> {
|
||||
));
|
||||
}
|
||||
if !right_spans.is_empty() {
|
||||
block = block
|
||||
.title_top(Line::from(right_spans).right_aligned());
|
||||
block = block.title_top(Line::from(right_spans).right_aligned());
|
||||
}
|
||||
}
|
||||
if let Some(hint_line) = hint_line {
|
||||
|
||||
Reference in New Issue
Block a user