Skip to content

Commit eb54478

Browse files
committed
fix: smoother message cap steps (10-by-10 from 10 to 100)
1 parent 4d079e8 commit eb54478

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codex-md.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ def read_key() -> str:
824824
OUTPUT_SECTIONS = {'terminal_output', 'mcp_tool_output', 'other_tool_output', 'custom_tool_output'}
825825
# Cap steps for ◀ ▶ control (0 = no cap, show all)
826826
CAP_STEPS = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 30, 50, 100, 200, 500]
827-
MSG_CAP_STEPS = [0, 5, 10, 20, 50] + list(range(70, 511, 20))
827+
MSG_CAP_STEPS = [0, 5] + list(range(10, 101, 10)) + [150, 200, 300, 500]
828828

829829
def interactive_filter(parsers: List[SessionParser]) -> Tuple[Dict[str, bool], bool, int, int, int, int]:
830830
"""

0 commit comments

Comments
 (0)