From de5ec0bec09a3e50b193c937f71388a737cb582a Mon Sep 17 00:00:00 2001 From: Lucas Trzesniewski Date: Fri, 20 Mar 2026 08:11:45 +0100 Subject: feat: Allow running `atuin search -i` as subcommand on Windows (#3250) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is the equivalent of #3208, but for Windows. ~The rendering performance is noticeably slower in this mode when refreshing a large part of the screen, but it's better than not having the feature at all.~ Fixed 🙂 The second commit fixes some unrelated warnings. /cc @BinaryMuse FYI ## 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 --- crates/atuin-ai/src/commands/inline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/atuin-ai/src') diff --git a/crates/atuin-ai/src/commands/inline.rs b/crates/atuin-ai/src/commands/inline.rs index af1d2137..fe6327a5 100644 --- a/crates/atuin-ai/src/commands/inline.rs +++ b/crates/atuin-ai/src/commands/inline.rs @@ -457,7 +457,7 @@ async fn run_inline_tui( #[cfg(unix)] let mut popup_state = crate::tui::popup::try_setup_popup(); #[cfg(not(unix))] - let mut popup_state: Option<()> = None; + let popup_state: Option<()> = None; let popup_mode = popup_state.is_some(); -- cgit v1.3.1