From be33de3f8768a47f426761fa6cc017aef9716135 Mon Sep 17 00:00:00 2001 From: Dylan Hurd Date: Wed, 28 Jan 2026 22:51:57 -0700 Subject: [PATCH] fix(tui) reorder personality command (#10134) ## Summary Reorder it down the list ## Testing - [x] Tests pass --- codex-rs/tui/src/slash_command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/tui/src/slash_command.rs b/codex-rs/tui/src/slash_command.rs index 5d1aa8dc4..9bab31461 100644 --- a/codex-rs/tui/src/slash_command.rs +++ b/codex-rs/tui/src/slash_command.rs @@ -13,7 +13,6 @@ pub enum SlashCommand { // DO NOT ALPHA-SORT! Enum order is presentation order in the popup, so // more frequently used commands should be listed first. Model, - Personality, Approvals, Permissions, #[strum(serialize = "setup-elevated-sandbox")] @@ -40,6 +39,7 @@ pub enum SlashCommand { Feedback, Rollout, Ps, + Personality, TestApproval, }