From 3dfa4d821a631f5960b620c4e42746c89b10be95 Mon Sep 17 00:00:00 2001 From: Kkoi <79646021+lmBored@users.noreply.github.com> Date: Wed, 11 Feb 2026 21:29:02 +0100 Subject: fix(shell): fix ATUIN_SESSION errors in tmux popup (#3170) This PR fixes: + #3154 + #3164 + #3166 It changes the following: + Pass ATUIN_SESSION to tmux popup + Use `command rm` to bypass user-defined configs + Disable tmux popup by default ## Checks - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [x] I have checked that there are no existing pull requests for the same thing --------- Co-authored-by: Ellie Huxtable --- crates/atuin-client/src/settings.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/atuin-client/src') diff --git a/crates/atuin-client/src/settings.rs b/crates/atuin-client/src/settings.rs index cb52c983..270fc200 100644 --- a/crates/atuin-client/src/settings.rs +++ b/crates/atuin-client/src/settings.rs @@ -519,7 +519,7 @@ impl Default for Search { impl Default for Tmux { fn default() -> Self { Self { - enabled: true, + enabled: false, width: "80%".to_string(), height: "60%".to_string(), } @@ -1082,7 +1082,7 @@ impl Settings { )? .set_default("theme.name", "default")? .set_default("theme.debug", None::)? - .set_default("tmux.enabled", true)? + .set_default("tmux.enabled", false)? .set_default("tmux.width", "80%")? .set_default("tmux.height", "60%")? .set_default( -- cgit v1.3.1