Compare commits

...

2 Commits

Author SHA1 Message Date
Ed Bayes
e54830dbf5 Merge branch 'main' into codex/change-placeholder-text-in-tui-composer 2025-08-06 21:40:28 -07:00
Ed Bayes
4f54bf029e Update TUI composer placeholder 2025-08-06 19:31:16 -07:00

View File

@@ -30,7 +30,7 @@ use crate::bottom_pane::textarea::TextAreaState;
use codex_file_search::FileMatch;
use std::cell::RefCell;
const BASE_PLACEHOLDER_TEXT: &str = "...";
const BASE_PLACEHOLDER_TEXT: &str = "Describe a task like \"write tests for <filepath>\"";
/// If the pasted content exceeds this number of characters, replace it with a
/// placeholder in the UI.
const LARGE_PASTE_CHAR_THRESHOLD: usize = 1000;