repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/dpapi.rs
codex-rs/windows-sandbox-rs/src/dpapi.rs
use anyhow::anyhow; use anyhow::Result; use windows_sys::Win32::Foundation::GetLastError; use windows_sys::Win32::Foundation::HLOCAL; use windows_sys::Win32::Foundation::LocalFree; use windows_sys::Win32::Security::Cryptography::CryptProtectData; use windows_sys::Win32::Security::Cryptography::CryptUnprotectData; use w...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs
codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs
use serde::Deserialize; use serde::Serialize; use std::collections::HashMap; use std::collections::HashSet; use std::ffi::c_void; use std::os::windows::process::CommandExt; use std::path::Path; use std::path::PathBuf; use std::process::Command; use std::process::Stdio; use crate::allow::compute_allow_paths; use crate:...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/sandbox_users.rs
codex-rs/windows-sandbox-rs/src/sandbox_users.rs
#![cfg(target_os = "windows")] use anyhow::Result; use base64::engine::general_purpose::STANDARD as BASE64; use base64::Engine; use rand::rngs::SmallRng; use rand::RngCore; use rand::SeedableRng; use serde::Serialize; use std::ffi::c_void; use std::ffi::OsStr; use std::fs::File; use std::path::Path; use std::path::Pat...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/command_runner_win.rs
codex-rs/windows-sandbox-rs/src/command_runner_win.rs
#![cfg(target_os = "windows")] use anyhow::Context; use anyhow::Result; use codex_windows_sandbox::allow_null_device; use codex_windows_sandbox::convert_string_sid_to_sid; use codex_windows_sandbox::create_process_as_user; use codex_windows_sandbox::create_readonly_token_with_cap_from; use codex_windows_sandbox::creat...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/acl.rs
codex-rs/windows-sandbox-rs/src/acl.rs
use crate::winutil::to_wide; use anyhow::anyhow; use anyhow::Result; use std::ffi::c_void; use std::path::Path; use windows_sys::Win32::Foundation::CloseHandle; use windows_sys::Win32::Foundation::LocalFree; use windows_sys::Win32::Foundation::ERROR_SUCCESS; use windows_sys::Win32::Foundation::HLOCAL; use windows_sys::...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/elevated_impl.rs
codex-rs/windows-sandbox-rs/src/elevated_impl.rs
mod windows_impl { use crate::acl::allow_null_device; use crate::allow::compute_allow_paths; use crate::allow::AllowDenyPaths; use crate::cap::load_or_create_cap_sids; use crate::env::ensure_non_interactive_pager; use crate::env::inherit_path_env; use crate::env::normalize_null_device_env; ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/logging.rs
codex-rs/windows-sandbox-rs/src/logging.rs
use std::fs::OpenOptions; use std::io::Write; use std::path::Path; use std::path::PathBuf; use std::sync::OnceLock; const LOG_COMMAND_PREVIEW_LIMIT: usize = 200; pub const LOG_FILE_NAME: &str = "sandbox.log"; fn exe_label() -> &'static str { static LABEL: OnceLock<String> = OnceLock::new(); LABEL.get_or_init(...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/identity.rs
codex-rs/windows-sandbox-rs/src/identity.rs
use crate::dpapi; use crate::logging::debug_log; use crate::policy::SandboxPolicy; use crate::setup::gather_read_roots; use crate::setup::gather_write_roots; use crate::setup::run_elevated_setup; use crate::setup::sandbox_users_path; use crate::setup::setup_marker_path; use crate::setup::SandboxUserRecord; use crate::s...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/winutil.rs
codex-rs/windows-sandbox-rs/src/winutil.rs
use std::ffi::OsStr; use std::os::windows::ffi::OsStrExt; use windows_sys::Win32::Foundation::LocalFree; use windows_sys::Win32::Foundation::HLOCAL; use windows_sys::Win32::System::Diagnostics::Debug::FormatMessageW; use windows_sys::Win32::System::Diagnostics::Debug::FORMAT_MESSAGE_ALLOCATE_BUFFER; use windows_sys::Wi...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/read_acl_mutex.rs
codex-rs/windows-sandbox-rs/src/read_acl_mutex.rs
use anyhow::Result; use std::ffi::OsStr; use windows_sys::Win32::Foundation::CloseHandle; use windows_sys::Win32::Foundation::GetLastError; use windows_sys::Win32::Foundation::ERROR_ALREADY_EXISTS; use windows_sys::Win32::Foundation::ERROR_FILE_NOT_FOUND; use windows_sys::Win32::Foundation::HANDLE; use windows_sys::Win...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/token.rs
codex-rs/windows-sandbox-rs/src/token.rs
use crate::winutil::to_wide; use anyhow::anyhow; use anyhow::Result; use std::ffi::c_void; use windows_sys::Win32::Foundation::CloseHandle; use windows_sys::Win32::Foundation::GetLastError; use windows_sys::Win32::Foundation::LocalFree; use windows_sys::Win32::Foundation::ERROR_SUCCESS; use windows_sys::Win32::Foundati...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/bin/setup_main.rs
codex-rs/windows-sandbox-rs/src/bin/setup_main.rs
#[path = "../setup_main_win.rs"] mod win; #[cfg(target_os = "windows")] fn main() -> anyhow::Result<()> { win::main() } #[cfg(not(target_os = "windows"))] fn main() { panic!("codex-windows-sandbox-setup is Windows-only"); }
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/windows-sandbox-rs/src/bin/command_runner.rs
codex-rs/windows-sandbox-rs/src/bin/command_runner.rs
#[path = "../command_runner_win.rs"] mod win; #[cfg(target_os = "windows")] fn main() -> anyhow::Result<()> { win::main() } #[cfg(not(target_os = "windows"))] fn main() { panic!("codex-command-runner is Windows-only"); }
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/app_event_sender.rs
codex-rs/tui/src/app_event_sender.rs
use tokio::sync::mpsc::UnboundedSender; use crate::app_event::AppEvent; use crate::session_log; #[derive(Clone, Debug)] pub(crate) struct AppEventSender { pub app_event_tx: UnboundedSender<AppEvent>, } impl AppEventSender { pub(crate) fn new(app_event_tx: UnboundedSender<AppEvent>) -> Self { Self { a...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/text_formatting.rs
codex-rs/tui/src/text_formatting.rs
use unicode_segmentation::UnicodeSegmentation; use unicode_width::UnicodeWidthChar; use unicode_width::UnicodeWidthStr; pub(crate) fn capitalize_first(input: &str) -> String { let mut chars = input.chars(); match chars.next() { Some(first) => { let mut capitalized = first.to_uppercase().col...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/app.rs
codex-rs/tui/src/app.rs
use crate::app_backtrack::BacktrackState; use crate::app_event::AppEvent; use crate::app_event_sender::AppEventSender; use crate::bottom_pane::ApprovalRequest; use crate::chatwidget::ChatWidget; use crate::chatwidget::ExternalEditorState; use crate::diff_render::DiffSummary; use crate::exec_command::strip_bash_lc_and_e...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/exec_command.rs
codex-rs/tui/src/exec_command.rs
use std::path::Path; use std::path::PathBuf; use codex_core::parse_command::extract_shell_command; use dirs::home_dir; use shlex::try_join; pub(crate) fn escape_command(command: &[String]) -> String { try_join(command.iter().map(String::as_str)).unwrap_or_else(|_| command.join(" ")) } pub(crate) fn strip_bash_lc...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/chatwidget.rs
codex-rs/tui/src/chatwidget.rs
use std::collections::HashMap; use std::collections::HashSet; use std::collections::VecDeque; use std::path::PathBuf; use std::sync::Arc; use std::time::Duration; use codex_app_server_protocol::AuthMode; use codex_backend_client::Client as BackendClient; use codex_core::config::Config; use codex_core::config::Constrai...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/lib.rs
codex-rs/tui/src/lib.rs
// Forbid accidental stdout/stderr writes in the *library* portion of the TUI. // The standalone `codex-tui` binary prints a short help message before the // alternate‑screen mode starts; that file opts‑out locally via `allow`. #![deny(clippy::print_stdout, clippy::print_stderr)] #![deny(clippy::disallowed_methods)] us...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/frames.rs
codex-rs/tui/src/frames.rs
use std::time::Duration; // Embed animation frames for each variant at compile time. macro_rules! frames_for { ($dir:literal) => { [ include_str!(concat!("../frames/", $dir, "/frame_1.txt")), include_str!(concat!("../frames/", $dir, "/frame_2.txt")), include_str!(concat!...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/version.rs
codex-rs/tui/src/version.rs
/// The current Codex CLI version as embedded at compile time. pub const CODEX_CLI_VERSION: &str = env!("CARGO_PKG_VERSION");
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/test_backend.rs
codex-rs/tui/src/test_backend.rs
use std::fmt::{self}; use std::io::Write; use std::io::{self}; use ratatui::prelude::CrosstermBackend; use ratatui::backend::Backend; use ratatui::backend::ClearType; use ratatui::backend::WindowSize; use ratatui::buffer::Cell; use ratatui::layout::Position; use ratatui::layout::Size; /// This wraps a CrosstermBacke...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/model_migration.rs
codex-rs/tui/src/model_migration.rs
use crate::key_hint; use crate::render::Insets; use crate::render::renderable::ColumnRenderable; use crate::render::renderable::Renderable; use crate::render::renderable::RenderableExt as _; use crate::selection_list::selection_option_row; use crate::tui::FrameRequester; use crate::tui::Tui; use crate::tui::TuiEvent; u...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/shimmer.rs
codex-rs/tui/src/shimmer.rs
use std::sync::OnceLock; use std::time::Duration; use std::time::Instant; use ratatui::style::Color; use ratatui::style::Modifier; use ratatui::style::Style; use ratatui::text::Span; use crate::color::blend; use crate::terminal_palette::default_bg; use crate::terminal_palette::default_fg; static PROCESS_START: OnceL...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/pager_overlay.rs
codex-rs/tui/src/pager_overlay.rs
use std::io::Result; use std::sync::Arc; use std::time::Duration; use crate::history_cell::HistoryCell; use crate::history_cell::UserHistoryCell; use crate::key_hint; use crate::key_hint::KeyBinding; use crate::render::Insets; use crate::render::renderable::InsetRenderable; use crate::render::renderable::Renderable; u...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/slash_command.rs
codex-rs/tui/src/slash_command.rs
use strum::IntoEnumIterator; use strum_macros::AsRefStr; use strum_macros::EnumIter; use strum_macros::EnumString; use strum_macros::IntoStaticStr; /// Commands that can be invoked by starting a message with a leading slash. #[derive( Debug, Clone, Copy, PartialEq, Eq, Hash, EnumString, EnumIter, AsRefStr, IntoSta...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/cli.rs
codex-rs/tui/src/cli.rs
use clap::Parser; use clap::ValueHint; use codex_common::ApprovalModeCliArg; use codex_common::CliConfigOverrides; use std::path::PathBuf; #[derive(Parser, Debug)] #[command(version)] pub struct Cli { /// Optional user prompt to start the session. #[arg(value_name = "PROMPT", value_hint = clap::ValueHint::Othe...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/wrapping.rs
codex-rs/tui/src/wrapping.rs
use ratatui::text::Line; use ratatui::text::Span; use std::borrow::Cow; use std::ops::Range; use textwrap::Options; use crate::render::line_utils::push_owned_lines; pub(crate) fn wrap_ranges<'a, O>(text: &str, width_or_options: O) -> Vec<Range<usize>> where O: Into<Options<'a>>, { let opts = width_or_options....
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/oss_selection.rs
codex-rs/tui/src/oss_selection.rs
use std::io; use std::sync::LazyLock; use codex_core::DEFAULT_LMSTUDIO_PORT; use codex_core::DEFAULT_OLLAMA_PORT; use codex_core::LMSTUDIO_OSS_PROVIDER_ID; use codex_core::OLLAMA_OSS_PROVIDER_ID; use codex_core::config::set_default_oss_provider; use crossterm::event::Event; use crossterm::event::KeyCode; use crossterm...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/get_git_diff.rs
codex-rs/tui/src/get_git_diff.rs
//! Utility to compute the current Git diff for the working directory. //! //! The implementation mirrors the behaviour of the TypeScript version in //! `codex-cli`: it returns the diff for tracked changes as well as any //! untracked files. When the current directory is not inside a Git //! repository, the function re...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/selection_list.rs
codex-rs/tui/src/selection_list.rs
use crate::render::renderable::Renderable; use crate::render::renderable::RowRenderable; use ratatui::style::Style; use ratatui::style::Styled as _; use ratatui::style::Stylize as _; use ratatui::widgets::Paragraph; use ratatui::widgets::Wrap; use unicode_width::UnicodeWidthStr; pub(crate) fn selection_option_row( ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/resume_picker.rs
codex-rs/tui/src/resume_picker.rs
use std::collections::HashSet; use std::path::Path; use std::path::PathBuf; use std::sync::Arc; use chrono::DateTime; use chrono::Utc; use codex_core::ConversationItem; use codex_core::ConversationsPage; use codex_core::Cursor; use codex_core::INTERACTIVE_SESSION_SOURCES; use codex_core::RolloutRecorder; use codex_cor...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/history_cell.rs
codex-rs/tui/src/history_cell.rs
use crate::diff_render::create_diff_summary; use crate::diff_render::display_path_for; use crate::exec_cell::CommandOutput; use crate::exec_cell::OutputLinesParams; use crate::exec_cell::TOOL_CALL_MAX_LINES; use crate::exec_cell::output_lines; use crate::exec_cell::spinner; use crate::exec_command::relativize_to_home; ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/status_indicator_widget.rs
codex-rs/tui/src/status_indicator_widget.rs
//! A live status indicator that shows the *latest* log line emitted by the //! application while the agent is processing a long‑running task. use std::time::Duration; use std::time::Instant; use codex_core::protocol::Op; use crossterm::event::KeyCode; use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratat...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/terminal_palette.rs
codex-rs/tui/src/terminal_palette.rs
use crate::color::perceptual_distance; use ratatui::style::Color; use std::sync::atomic::AtomicU64; use std::sync::atomic::Ordering; static DEFAULT_PALETTE_VERSION: AtomicU64 = AtomicU64::new(0); fn bump_palette_version() { DEFAULT_PALETTE_VERSION.fetch_add(1, Ordering::Relaxed); } /// Returns the closest color ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/live_wrap.rs
codex-rs/tui/src/live_wrap.rs
use unicode_width::UnicodeWidthChar; use unicode_width::UnicodeWidthStr; /// A single visual row produced by RowBuilder. #[derive(Debug, Clone, PartialEq, Eq)] pub struct Row { pub text: String, /// True if this row ends with an explicit line break (as opposed to a hard wrap). pub explicit_break: bool, } ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/file_search.rs
codex-rs/tui/src/file_search.rs
//! Helper that owns the debounce/cancellation logic for `@` file searches. //! //! `ChatComposer` publishes *every* change of the `@token` as //! `AppEvent::StartFileSearch(query)`. //! This struct receives those events and decides when to actually spawn the //! expensive search (handled in the main `App` thread). It ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/markdown.rs
codex-rs/tui/src/markdown.rs
use ratatui::text::Line; pub(crate) fn append_markdown( markdown_source: &str, width: Option<usize>, lines: &mut Vec<Line<'static>>, ) { let rendered = crate::markdown_render::render_markdown_text_with_width(markdown_source, width); crate::render::line_utils::push_owned_lines(&rendered.lines, lines)...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/ui_consts.rs
codex-rs/tui/src/ui_consts.rs
//! Shared UI constants for layout and alignment within the TUI. /// Width (in terminal columns) reserved for the left gutter/prefix used by /// live cells and aligned widgets. /// /// Semantics: /// - Chat composer reserves this many columns for the left border + padding. /// - Status indicator lines begin with this ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/app_backtrack.rs
codex-rs/tui/src/app_backtrack.rs
use std::any::TypeId; use std::path::PathBuf; use std::sync::Arc; use crate::app::App; use crate::history_cell::SessionInfoCell; use crate::history_cell::UserHistoryCell; use crate::pager_overlay::Overlay; use crate::tui; use crate::tui::TuiEvent; use codex_core::protocol::ConversationPathResponseEvent; use codex_prot...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/insert_history.rs
codex-rs/tui/src/insert_history.rs
use std::fmt; use std::io; use std::io::Write; use crate::wrapping::word_wrap_lines_borrowed; use crossterm::Command; use crossterm::cursor::MoveTo; use crossterm::queue; use crossterm::style::Color as CColor; use crossterm::style::Colors; use crossterm::style::Print; use crossterm::style::SetAttribute; use crossterm:...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/style.rs
codex-rs/tui/src/style.rs
use crate::color::blend; use crate::color::is_light; use crate::terminal_palette::best_color; use crate::terminal_palette::default_bg; use ratatui::style::Color; use ratatui::style::Style; pub fn user_message_style() -> Style { user_message_style_for(default_bg()) } /// Returns the style for a user-authored messa...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/markdown_render.rs
codex-rs/tui/src/markdown_render.rs
use crate::render::line_utils::line_to_static; use crate::wrapping::RtOptions; use crate::wrapping::word_wrap_line; use pulldown_cmark::CodeBlockKind; use pulldown_cmark::CowStr; use pulldown_cmark::Event; use pulldown_cmark::HeadingLevel; use pulldown_cmark::Options; use pulldown_cmark::Parser; use pulldown_cmark::Tag...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/markdown_render_tests.rs
codex-rs/tui/src/markdown_render_tests.rs
use pretty_assertions::assert_eq; use ratatui::style::Stylize; use ratatui::text::Line; use ratatui::text::Span; use ratatui::text::Text; use crate::markdown_render::render_markdown_text; use insta::assert_snapshot; #[test] fn empty() { assert_eq!(render_markdown_text(""), Text::default()); } #[test] fn paragrap...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/markdown_stream.rs
codex-rs/tui/src/markdown_stream.rs
use ratatui::text::Line; use crate::markdown; /// Newline-gated accumulator that renders markdown and commits only fully /// completed logical lines. pub(crate) struct MarkdownStreamCollector { buffer: String, committed_line_count: usize, width: Option<usize>, } impl MarkdownStreamCollector { pub fn ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/additional_dirs.rs
codex-rs/tui/src/additional_dirs.rs
use codex_core::protocol::SandboxPolicy; use std::path::PathBuf; /// Returns a warning describing why `--add-dir` entries will be ignored for the /// resolved sandbox policy. The caller is responsible for presenting the /// warning to the user (for example, printing to stderr). pub fn add_dir_warning_message( addi...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/session_log.rs
codex-rs/tui/src/session_log.rs
use std::fs::File; use std::fs::OpenOptions; use std::io::Write; use std::path::PathBuf; use std::sync::LazyLock; use std::sync::Mutex; use std::sync::OnceLock; use codex_core::config::Config; use codex_core::protocol::Op; use serde::Serialize; use serde_json::json; use crate::app_event::AppEvent; static LOGGER: Laz...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/diff_render.rs
codex-rs/tui/src/diff_render.rs
use diffy::Hunk; use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::style::Color; use ratatui::style::Modifier; use ratatui::style::Style; use ratatui::style::Stylize; use ratatui::text::Line as RtLine; use ratatui::text::Span as RtSpan; use ratatui::widgets::Paragraph; use std::collections::HashMap; ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/ascii_animation.rs
codex-rs/tui/src/ascii_animation.rs
use std::convert::TryFrom; use std::time::Duration; use std::time::Instant; use rand::Rng as _; use crate::frames::ALL_VARIANTS; use crate::frames::FRAME_TICK_DEFAULT; use crate::tui::FrameRequester; /// Drives ASCII art animations shared across popups and onboarding widgets. pub(crate) struct AsciiAnimation { r...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/clipboard_paste.rs
codex-rs/tui/src/clipboard_paste.rs
use std::path::Path; use std::path::PathBuf; use tempfile::Builder; #[derive(Debug, Clone)] pub enum PasteImageError { ClipboardUnavailable(String), NoImage(String), EncodeFailed(String), IoError(String), } impl std::fmt::Display for PasteImageError { fn fmt(&self, f: &mut std::fmt::Formatter<'_>)...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/main.rs
codex-rs/tui/src/main.rs
use clap::Parser; use codex_arg0::arg0_dispatch_or_else; use codex_common::CliConfigOverrides; use codex_tui::Cli; use codex_tui::run_main; #[derive(Parser, Debug)] struct TopCli { #[clap(flatten)] config_overrides: CliConfigOverrides, #[clap(flatten)] inner: Cli, } fn main() -> anyhow::Result<()> { ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/app_event.rs
codex-rs/tui/src/app_event.rs
use std::path::PathBuf; use codex_common::approval_presets::ApprovalPreset; use codex_core::protocol::ConversationPathResponseEvent; use codex_core::protocol::Event; use codex_core::protocol::RateLimitSnapshot; use codex_file_search::FileMatch; use codex_protocol::openai_models::ModelPreset; use crate::bottom_pane::A...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/tui.rs
codex-rs/tui/src/tui.rs
use std::fmt; use std::future::Future; use std::io::IsTerminal; use std::io::Result; use std::io::Stdout; use std::io::stdin; use std::io::stdout; use std::panic; use std::pin::Pin; use std::sync::Arc; use std::sync::atomic::AtomicBool; use std::sync::atomic::Ordering; use crossterm::Command; use crossterm::Synchroniz...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/key_hint.rs
codex-rs/tui/src/key_hint.rs
use crossterm::event::KeyCode; use crossterm::event::KeyEvent; use crossterm::event::KeyEventKind; use crossterm::event::KeyModifiers; use ratatui::style::Style; use ratatui::style::Stylize; use ratatui::text::Span; #[cfg(test)] const ALT_PREFIX: &str = "⌥ + "; #[cfg(all(not(test), target_os = "macos"))] const ALT_PRE...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/tooltips.rs
codex-rs/tui/src/tooltips.rs
use codex_core::features::FEATURES; use lazy_static::lazy_static; use rand::Rng; const RAW_TOOLTIPS: &str = include_str!("../tooltips.txt"); fn beta_tooltips() -> Vec<&'static str> { FEATURES .iter() .filter_map(|spec| spec.stage.beta_announcement()) .collect() } lazy_static! { static...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/updates.rs
codex-rs/tui/src/updates.rs
#![cfg(not(debug_assertions))] use crate::update_action; use crate::update_action::UpdateAction; use chrono::DateTime; use chrono::Duration; use chrono::Utc; use codex_core::config::Config; use codex_core::default_client::create_client; use serde::Deserialize; use serde::Serialize; use std::path::Path; use std::path::...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/update_action.rs
codex-rs/tui/src/update_action.rs
/// Update action the CLI should perform after the TUI exits. #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum UpdateAction { /// Update via `npm install -g @openai/codex@latest`. NpmGlobalLatest, /// Update via `bun install -g @openai/codex@latest`. BunGlobalLatest, /// Update via `brew upgrad...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/color.rs
codex-rs/tui/src/color.rs
pub(crate) fn is_light(bg: (u8, u8, u8)) -> bool { let (r, g, b) = bg; let y = 0.299 * r as f32 + 0.587 * g as f32 + 0.114 * b as f32; y > 128.0 } pub(crate) fn blend(fg: (u8, u8, u8), bg: (u8, u8, u8), alpha: f32) -> (u8, u8, u8) { let r = (fg.0 as f32 * alpha + bg.0 as f32 * (1.0 - alpha)) as u8; ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/update_prompt.rs
codex-rs/tui/src/update_prompt.rs
#![cfg(not(debug_assertions))] use crate::history_cell::padded_emoji; use crate::key_hint; use crate::render::Insets; use crate::render::renderable::ColumnRenderable; use crate::render::renderable::Renderable; use crate::render::renderable::RenderableExt as _; use crate::selection_list::selection_option_row; use crate...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/custom_terminal.rs
codex-rs/tui/src/custom_terminal.rs
// This is derived from `ratatui::Terminal`, which is licensed under the following terms: // // The MIT License (MIT) // Copyright (c) 2016-2022 Florian Dehau // Copyright (c) 2023-2025 The Ratatui Developers // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and asso...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/external_editor.rs
codex-rs/tui/src/external_editor.rs
use std::env; use std::fs; use std::process::Stdio; use color_eyre::eyre::Report; use color_eyre::eyre::Result; use tempfile::Builder; use thiserror::Error; use tokio::process::Command; #[derive(Debug, Error)] pub(crate) enum EditorError { #[error("neither VISUAL nor EDITOR is set")] MissingEditor, #[cfg(...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/list_selection_view.rs
codex-rs/tui/src/bottom_pane/list_selection_view.rs
use crossterm::event::KeyCode; use crossterm::event::KeyEvent; use crossterm::event::KeyModifiers; use itertools::Itertools as _; use ratatui::buffer::Buffer; use ratatui::layout::Constraint; use ratatui::layout::Layout; use ratatui::layout::Rect; use ratatui::style::Stylize; use ratatui::text::Line; use ratatui::text:...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/footer.rs
codex-rs/tui/src/bottom_pane/footer.rs
#[cfg(target_os = "linux")] use crate::clipboard_paste::is_probably_wsl; use crate::key_hint; use crate::key_hint::KeyBinding; use crate::render::line_utils::prefix_lines; use crate::status::format_tokens_compact; use crate::ui_consts::FOOTER_INDENT_COLS; use crossterm::event::KeyCode; use ratatui::buffer::Buffer; use ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/textarea.rs
codex-rs/tui/src/bottom_pane/textarea.rs
use crate::key_hint::is_altgr; use crossterm::event::KeyCode; use crossterm::event::KeyEvent; use crossterm::event::KeyModifiers; use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::style::Color; use ratatui::style::Style; use ratatui::widgets::StatefulWidgetRef; use ratatui::widgets::WidgetRef; use st...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/command_popup.rs
codex-rs/tui/src/bottom_pane/command_popup.rs
use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::widgets::WidgetRef; use super::popup_consts::MAX_POPUP_ROWS; use super::scroll_state::ScrollState; use super::selection_popup_common::GenericDisplayRow; use super::selection_popup_common::render_rows; use crate::render::Insets; use crate::render::Rec...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/file_search_popup.rs
codex-rs/tui/src/bottom_pane/file_search_popup.rs
use codex_file_search::FileMatch; use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::widgets::WidgetRef; use crate::render::Insets; use crate::render::RectExt; use super::popup_consts::MAX_POPUP_ROWS; use super::scroll_state::ScrollState; use super::selection_popup_common::GenericDisplayRow; use sup...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/scroll_state.rs
codex-rs/tui/src/bottom_pane/scroll_state.rs
/// Generic scroll/selection state for a vertical list menu. /// /// Encapsulates the common behavior of a selectable list that supports: /// - Optional selection (None when list is empty) /// - Wrap-around navigation on Up/Down /// - Maintaining a scroll window (`scroll_top`) so the selected row stays visible #[derive...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/paste_burst.rs
codex-rs/tui/src/bottom_pane/paste_burst.rs
use std::time::Duration; use std::time::Instant; // Heuristic thresholds for detecting paste-like input bursts. // Detect quickly to avoid showing typed prefix before paste is recognized const PASTE_BURST_MIN_CHARS: u16 = 3; const PASTE_BURST_CHAR_INTERVAL: Duration = Duration::from_millis(8); const PASTE_ENTER_SUPPRE...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/selection_popup_common.rs
codex-rs/tui/src/bottom_pane/selection_popup_common.rs
use ratatui::buffer::Buffer; use ratatui::layout::Rect; // Note: Table-based layout previously used Constraint; the manual renderer // below no longer requires it. use ratatui::style::Color; use ratatui::style::Style; use ratatui::style::Stylize; use ratatui::text::Line; use ratatui::text::Span; use ratatui::widgets::W...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/feedback_view.rs
codex-rs/tui/src/bottom_pane/feedback_view.rs
use std::cell::RefCell; use std::path::PathBuf; use crossterm::event::KeyCode; use crossterm::event::KeyEvent; use crossterm::event::KeyModifiers; use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::style::Stylize; use ratatui::text::Line; use ratatui::text::Span; use ratatui::widgets::Clear; use rata...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/custom_prompt_view.rs
codex-rs/tui/src/bottom_pane/custom_prompt_view.rs
use crossterm::event::KeyCode; use crossterm::event::KeyEvent; use crossterm::event::KeyModifiers; use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::style::Stylize; use ratatui::text::Line; use ratatui::text::Span; use ratatui::widgets::Clear; use ratatui::widgets::Paragraph; use ratatui::widgets::St...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/queued_user_messages.rs
codex-rs/tui/src/bottom_pane/queued_user_messages.rs
use crossterm::event::KeyCode; use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::style::Stylize; use ratatui::text::Line; use ratatui::widgets::Paragraph; use crate::key_hint; use crate::render::renderable::Renderable; use crate::wrapping::RtOptions; use crate::wrapping::word_wrap_lines; /// Widget...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/popup_consts.rs
codex-rs/tui/src/bottom_pane/popup_consts.rs
//! Shared popup-related constants for bottom pane widgets. use crossterm::event::KeyCode; use ratatui::text::Line; use crate::key_hint; /// Maximum number of rows any popup should attempt to display. /// Keep this consistent across all popups for a uniform feel. pub(crate) const MAX_POPUP_ROWS: usize = 8; /// Stan...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/chat_composer_history.rs
codex-rs/tui/src/bottom_pane/chat_composer_history.rs
use std::collections::HashMap; use crate::app_event::AppEvent; use crate::app_event_sender::AppEventSender; use codex_core::protocol::Op; /// State machine that manages shell-style history navigation (Up/Down) inside /// the chat composer. This struct is intentionally decoupled from the /// rendering widget so the lo...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/bottom_pane_view.rs
codex-rs/tui/src/bottom_pane/bottom_pane_view.rs
use crate::bottom_pane::ApprovalRequest; use crate::render::renderable::Renderable; use crossterm::event::KeyEvent; use super::CancellationEvent; /// Trait implemented by every view that can be shown in the bottom pane. pub(crate) trait BottomPaneView: Renderable { /// Handle a key event while the view is active....
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/mod.rs
codex-rs/tui/src/bottom_pane/mod.rs
//! Bottom pane: shows the ChatComposer or a BottomPaneView, if one is active. use std::path::PathBuf; use crate::app_event_sender::AppEventSender; use crate::bottom_pane::queued_user_messages::QueuedUserMessages; use crate::bottom_pane::unified_exec_footer::UnifiedExecFooter; use crate::render::renderable::FlexRender...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/prompt_args.rs
codex-rs/tui/src/bottom_pane/prompt_args.rs
use codex_protocol::custom_prompts::CustomPrompt; use codex_protocol::custom_prompts::PROMPTS_CMD_PREFIX; use lazy_static::lazy_static; use regex_lite::Regex; use shlex::Shlex; use std::collections::HashMap; use std::collections::HashSet; lazy_static! { static ref PROMPT_ARG_REGEX: Regex = Regex::new(r"\$[...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/chat_composer.rs
codex-rs/tui/src/bottom_pane/chat_composer.rs
use crate::key_hint::has_ctrl_or_alt; use crossterm::event::KeyCode; use crossterm::event::KeyEvent; use crossterm::event::KeyEventKind; use crossterm::event::KeyModifiers; use ratatui::buffer::Buffer; use ratatui::layout::Constraint; use ratatui::layout::Layout; use ratatui::layout::Margin; use ratatui::layout::Rect; ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/unified_exec_footer.rs
codex-rs/tui/src/bottom_pane/unified_exec_footer.rs
use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::style::Stylize; use ratatui::text::Line; use ratatui::widgets::Paragraph; use crate::live_wrap::take_prefix_by_width; use crate::render::renderable::Renderable; pub(crate) struct UnifiedExecFooter { sessions: Vec<String>, } impl UnifiedExecFoot...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/approval_overlay.rs
codex-rs/tui/src/bottom_pane/approval_overlay.rs
use std::collections::HashMap; use std::path::PathBuf; use crate::app_event::AppEvent; use crate::app_event_sender::AppEventSender; use crate::bottom_pane::BottomPaneView; use crate::bottom_pane::CancellationEvent; use crate::bottom_pane::list_selection_view::ListSelectionView; use crate::bottom_pane::list_selection_v...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/skill_popup.rs
codex-rs/tui/src/bottom_pane/skill_popup.rs
use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::widgets::WidgetRef; use super::popup_consts::MAX_POPUP_ROWS; use super::scroll_state::ScrollState; use super::selection_popup_common::GenericDisplayRow; use super::selection_popup_common::render_rows_single_line; use crate::render::Insets; use crate:...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/bottom_pane/experimental_features_view.rs
codex-rs/tui/src/bottom_pane/experimental_features_view.rs
use crossterm::event::KeyCode; use crossterm::event::KeyEvent; use crossterm::event::KeyModifiers; use ratatui::buffer::Buffer; use ratatui::layout::Constraint; use ratatui::layout::Layout; use ratatui::layout::Rect; use ratatui::style::Stylize; use ratatui::text::Line; use ratatui::widgets::Block; use ratatui::widgets...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/public_widgets/composer_input.rs
codex-rs/tui/src/public_widgets/composer_input.rs
//! Public wrapper around the internal ChatComposer for simple, reusable text input. //! //! This exposes a minimal interface suitable for other crates (e.g., //! codex-cloud-tasks) to reuse the mature composer behavior: multi-line input, //! paste heuristics, Enter-to-submit, and Shift+Enter for newline. use crosster...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/public_widgets/mod.rs
codex-rs/tui/src/public_widgets/mod.rs
pub mod composer_input;
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/onboarding/auth.rs
codex-rs/tui/src/onboarding/auth.rs
#![allow(clippy::unwrap_used)] use codex_core::AuthManager; use codex_core::auth::AuthCredentialsStoreMode; use codex_core::auth::CLIENT_ID; use codex_core::auth::login_with_api_key; use codex_core::auth::read_openai_api_key_from_env; use codex_login::ServerOptions; use codex_login::ShutdownHandle; use codex_login::ru...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/onboarding/mod.rs
codex-rs/tui/src/onboarding/mod.rs
mod auth; pub mod onboarding_screen; mod trust_directory; pub use trust_directory::TrustDirectorySelection; mod welcome;
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/onboarding/onboarding_screen.rs
codex-rs/tui/src/onboarding/onboarding_screen.rs
use codex_core::AuthManager; use codex_core::config::Config; use codex_core::git_info::get_git_repo_root; use crossterm::event::KeyCode; use crossterm::event::KeyEvent; use crossterm::event::KeyEventKind; use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::prelude::Widget; use ratatui::style::Color; us...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/onboarding/trust_directory.rs
codex-rs/tui/src/onboarding/trust_directory.rs
use std::path::PathBuf; use codex_core::config::set_project_trust_level; use codex_core::git_info::resolve_root_git_project_for_trust; use codex_protocol::config_types::TrustLevel; use crossterm::event::KeyCode; use crossterm::event::KeyEvent; use crossterm::event::KeyEventKind; use ratatui::buffer::Buffer; use ratatu...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/onboarding/welcome.rs
codex-rs/tui/src/onboarding/welcome.rs
use crossterm::event::KeyCode; use crossterm::event::KeyEvent; use crossterm::event::KeyEventKind; use crossterm::event::KeyModifiers; use ratatui::buffer::Buffer; use ratatui::layout::Rect; use ratatui::prelude::Widget; use ratatui::style::Stylize; use ratatui::text::Line; use ratatui::widgets::Clear; use ratatui::wid...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/chatwidget/interrupts.rs
codex-rs/tui/src/chatwidget/interrupts.rs
use std::collections::VecDeque; use codex_core::protocol::ApplyPatchApprovalRequestEvent; use codex_core::protocol::ExecApprovalRequestEvent; use codex_core::protocol::ExecCommandBeginEvent; use codex_core::protocol::ExecCommandEndEvent; use codex_core::protocol::McpToolCallBeginEvent; use codex_core::protocol::McpToo...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/chatwidget/tests.rs
codex-rs/tui/src/chatwidget/tests.rs
use super::*; use crate::app_event::AppEvent; use crate::app_event_sender::AppEventSender; use crate::test_backend::VT100Backend; use crate::tui::FrameRequester; use assert_matches::assert_matches; use codex_common::approval_presets::builtin_approval_presets; use codex_core::AuthManager; use codex_core::CodexAuth; use ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
true
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/chatwidget/session_header.rs
codex-rs/tui/src/chatwidget/session_header.rs
pub(crate) struct SessionHeader { model: String, } impl SessionHeader { pub(crate) fn new(model: String) -> Self { Self { model } } /// Updates the header's model text. pub(crate) fn set_model(&mut self, model: &str) { if self.model != model { self.model = model.to_stri...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/chatwidget/agent.rs
codex-rs/tui/src/chatwidget/agent.rs
use std::sync::Arc; use codex_core::CodexConversation; use codex_core::ConversationManager; use codex_core::NewConversation; use codex_core::config::Config; use codex_core::protocol::Event; use codex_core::protocol::EventMsg; use codex_core::protocol::Op; use tokio::sync::mpsc::UnboundedSender; use tokio::sync::mpsc::...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/streaming/controller.rs
codex-rs/tui/src/streaming/controller.rs
use crate::history_cell::HistoryCell; use crate::history_cell::{self}; use ratatui::text::Line; use super::StreamState; /// Controller that manages newline-gated streaming, header emission, and /// commit animation across streams. pub(crate) struct StreamController { state: StreamState, finishing_after_drain:...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/streaming/mod.rs
codex-rs/tui/src/streaming/mod.rs
use std::collections::VecDeque; use ratatui::text::Line; use crate::markdown_stream::MarkdownStreamCollector; pub(crate) mod controller; pub(crate) struct StreamState { pub(crate) collector: MarkdownStreamCollector, queued_lines: VecDeque<Line<'static>>, pub(crate) has_seen_delta: bool, } impl StreamSta...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/tui/job_control.rs
codex-rs/tui/src/tui/job_control.rs
use std::io::Result; use std::io::stdout; use std::sync::Arc; use std::sync::Mutex; use std::sync::PoisonError; use std::sync::atomic::AtomicBool; use std::sync::atomic::AtomicU16; use std::sync::atomic::Ordering; use crossterm::cursor::MoveTo; use crossterm::cursor::Show; use crossterm::event::KeyCode; use crossterm:...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/tui/frame_requester.rs
codex-rs/tui/src/tui/frame_requester.rs
//! Frame draw scheduling utilities for the TUI. //! //! This module exposes [`FrameRequester`], a lightweight handle that widgets and //! background tasks can clone to request future redraws of the TUI. //! //! Internally it spawns a [`FrameScheduler`] task that coalesces many requests //! into a single notification o...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/tui/event_stream.rs
codex-rs/tui/src/tui/event_stream.rs
//! Event stream plumbing for the TUI. //! //! - [`EventBroker`] holds the shared crossterm stream so multiple callers reuse the same //! input source and can drop/recreate it on pause/resume without rebuilding consumers. //! - [`TuiEventStream`] wraps a draw event subscription plus the shared [`EventBroker`] and map...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/tui/frame_rate_limiter.rs
codex-rs/tui/src/tui/frame_rate_limiter.rs
//! Limits how frequently frame draw notifications may be emitted. //! //! Widgets sometimes call `FrameRequester::schedule_frame()` more frequently than a user can //! perceive. This limiter clamps draw notifications to a maximum of 60 FPS to avoid wasted work. //! //! This is intentionally a small, pure helper so it ...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false
openai/codex
https://github.com/openai/codex/blob/279283fe02bf0ce7f93a160db34dd8cf9c8f42c8/codex-rs/tui/src/exec_cell/render.rs
codex-rs/tui/src/exec_cell/render.rs
use std::time::Instant; use super::model::CommandOutput; use super::model::ExecCall; use super::model::ExecCell; use crate::exec_command::strip_bash_lc_and_escape; use crate::history_cell::HistoryCell; use crate::render::highlight::highlight_bash_to_lines; use crate::render::line_utils::prefix_lines; use crate::render...
rust
Apache-2.0
279283fe02bf0ce7f93a160db34dd8cf9c8f42c8
2026-01-04T15:31:59.292600Z
false