summaryrefslogtreecommitdiffstats
path: root/src/key_command/impl_interactive.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/key_command/impl_interactive.rs')
-rw-r--r--src/key_command/impl_interactive.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/key_command/impl_interactive.rs b/src/key_command/impl_interactive.rs
index d2e102e..f92137d 100644
--- a/src/key_command/impl_interactive.rs
+++ b/src/key_command/impl_interactive.rs
@@ -7,7 +7,7 @@ impl InteractiveExecute for Command {
#[allow(clippy::single_match)]
fn interactive_execute(&self, context: &mut AppContext) {
match self {
- Self::SearchIncremental(pattern) => {
+ Self::SearchIncremental { pattern } => {
search_string::search_string(context, pattern.as_str(), true)
}
_ => (),