diff options
Diffstat (limited to 'atuin-client')
| -rw-r--r-- | atuin-client/config.toml | 5 | ||||
| -rw-r--r-- | atuin-client/src/settings.rs | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/atuin-client/config.toml b/atuin-client/config.toml index 8a219641..7fd07986 100644 --- a/atuin-client/config.toml +++ b/atuin-client/config.toml @@ -47,6 +47,11 @@ ## leave unspecified to use same mode set in "filter_mode" # filter_mode_shell_up_key_binding = "global" +## which search mode to use when atuin is invoked from a shell up-key binding +## the accepted values are identical to those of "search_mode" +## leave unspecified to use same mode set in "search_mode" +# search_mode_shell_up_key_binding = "fuzzy" + ## which style to use ## possible values: auto, full, compact # style = "auto" diff --git a/atuin-client/src/settings.rs b/atuin-client/src/settings.rs index ebc1a372..e2d22e93 100644 --- a/atuin-client/src/settings.rs +++ b/atuin-client/src/settings.rs @@ -157,6 +157,7 @@ pub struct Settings { pub search_mode: SearchMode, pub filter_mode: FilterMode, pub filter_mode_shell_up_key_binding: Option<FilterMode>, + pub search_mode_shell_up_key_binding: Option<SearchMode>, pub shell_up_key_binding: bool, pub inline_height: u16, pub invert: bool, |
