diff options
| author | Lucas Trzesniewski <lucas.trzesniewski@gmail.com> | 2026-03-20 08:11:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-20 07:11:45 +0000 |
| commit | de5ec0bec09a3e50b193c937f71388a737cb582a (patch) | |
| tree | a008d972f61a58eec2263d37701c7255615aa64d /crates/atuin-ai/src | |
| parent | docs: add inline_height_shell_up_key_binding (#3270) (diff) | |
| download | atuin-de5ec0bec09a3e50b193c937f71388a737cb582a.zip | |
feat: Allow running `atuin search -i` as subcommand on Windows (#3250)
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
Diffstat (limited to 'crates/atuin-ai/src')
| -rw-r--r-- | crates/atuin-ai/src/commands/inline.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |
