diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2023-03-05 18:43:03 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-05 18:43:03 +0000 |
| commit | 3eb50a8383e65379eddf0edd8dc73431ee8080ff (patch) | |
| tree | 7e1f797622441add36236802267aafb062cbb8f9 /src/command/client/search.rs | |
| parent | Show preview of selected command (#643) (diff) | |
| download | atuin-3eb50a8383e65379eddf0edd8dc73431ee8080ff.zip | |
Up arrow filter_mode setting default to global filter mode (#758)
Resolves #756
Diffstat (limited to 'src/command/client/search.rs')
| -rw-r--r-- | src/command/client/search.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/command/client/search.rs b/src/command/client/search.rs index 9321f117..f437783d 100644 --- a/src/command/client/search.rs +++ b/src/command/client/search.rs @@ -88,7 +88,9 @@ impl Cmd { if self.filter_mode.is_some() { settings.filter_mode = self.filter_mode.unwrap(); } + settings.shell_up_key_binding = self.shell_up_key_binding; + if self.interactive { let item = interactive::history(&self.query, settings, db).await?; eprintln!("{item}"); |
