mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
fix(tui): remove duplicate context statusline item (#18054)
Addresses #18045 Problem: `/statusline` exposed both `context-remaining` and `context-remaining-percent` after conflicting PRs attempted to address the same context-status issue, including #17637, allowing duplicate footer segments. Solution: Remove the duplicate `context-remaining-percent` status-line item and update status-line tests and snapshots to use only canonical `context-remaining`.
This commit is contained in:
+8
-8
@@ -8,14 +8,14 @@ expression: "render_lines(&view, 72)"
|
||||
|
||||
Type to search
|
||||
>
|
||||
› [x] model-name Current model name
|
||||
[x] current-dir Current working directory
|
||||
[x] git-branch Current Git branch (omitted when unavail…
|
||||
[ ] model-with-reasoning Current model name with reasoning level
|
||||
[ ] project-root Project root directory (omitted when una…
|
||||
[ ] context-remaining Percentage of context window remaining (…
|
||||
[ ] context-remaining-... Percentage of context window remaining (…
|
||||
[ ] context-used Percentage of context window used (omitt…
|
||||
› [x] model-name Current model name
|
||||
[x] current-dir Current working directory
|
||||
[x] git-branch Current Git branch (omitted when unavaila…
|
||||
[ ] model-with-reasoning Current model name with reasoning level
|
||||
[ ] project-root Project root directory (omitted when unav…
|
||||
[ ] context-remaining Percentage of context window remaining (o…
|
||||
[ ] context-used Percentage of context window used (omitte…
|
||||
[ ] five-hour-limit Remaining usage on 5-hour usage limit (om…
|
||||
|
||||
gpt-5-codex · ~/codex-rs · jif/statusline-preview
|
||||
Use ↑↓ to navigate, ←→ to move, space to select, enter to confirm, esc
|
||||
|
||||
@@ -66,10 +66,6 @@ pub(crate) enum StatusLineItem {
|
||||
/// Percentage of context window remaining.
|
||||
ContextRemaining,
|
||||
|
||||
/// Percentage of context window remaining.
|
||||
#[strum(to_string = "context-remaining-percent")]
|
||||
ContextRemainingPercent,
|
||||
|
||||
/// Percentage of context window used.
|
||||
///
|
||||
/// Also accepts the legacy `context-usage` config value.
|
||||
@@ -119,9 +115,6 @@ impl StatusLineItem {
|
||||
StatusLineItem::ContextRemaining => {
|
||||
"Percentage of context window remaining (omitted when unknown)"
|
||||
}
|
||||
StatusLineItem::ContextRemainingPercent => {
|
||||
"Percentage of context window remaining (omitted when unknown)"
|
||||
}
|
||||
StatusLineItem::ContextUsed => {
|
||||
"Percentage of context window used (omitted when unknown)"
|
||||
}
|
||||
@@ -321,7 +314,7 @@ mod tests {
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn context_remaining_is_separate_selectable_id() {
|
||||
fn context_remaining_is_selectable_id() {
|
||||
assert_eq!(
|
||||
"context-remaining".parse::<StatusLineItem>(),
|
||||
Ok(StatusLineItem::ContextRemaining)
|
||||
@@ -332,18 +325,6 @@ mod tests {
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn context_remaining_percent_is_separate_selectable_id() {
|
||||
assert_eq!(
|
||||
StatusLineItem::ContextRemainingPercent.to_string(),
|
||||
"context-remaining-percent"
|
||||
);
|
||||
assert_eq!(
|
||||
"context-remaining-percent".parse::<StatusLineItem>(),
|
||||
Ok(StatusLineItem::ContextRemainingPercent)
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn preview_uses_runtime_values() {
|
||||
let preview_data = StatusLinePreviewData::from_iter([
|
||||
|
||||
Reference in New Issue
Block a user