diff options
| author | Kkoi <79646021+lmBored@users.noreply.github.com> | 2026-02-11 21:29:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-11 12:29:02 -0800 |
| commit | 3dfa4d821a631f5960b620c4e42746c89b10be95 (patch) | |
| tree | 15d37f0d267e98a92bb6086626bfb8dd8bb3d2e1 /crates/atuin-client/src | |
| parent | fix: Server start commands for Docker. (#3160) (diff) | |
| download | atuin-3dfa4d821a631f5960b620c4e42746c89b10be95.zip | |
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 <ellie@elliehuxtable.com>
Diffstat (limited to 'crates/atuin-client/src')
| -rw-r--r-- | crates/atuin-client/src/settings.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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::<bool>)? - .set_default("tmux.enabled", true)? + .set_default("tmux.enabled", false)? .set_default("tmux.width", "80%")? .set_default("tmux.height", "60%")? .set_default( |
