From 3a0c397410bfb3fba251a5a69acc19ff51258710 Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Sun, 4 Apr 2021 21:59:55 +0200 Subject: [PATCH] feat(match): expose struct option fields --- espanso-match/src/rolling/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/espanso-match/src/rolling/mod.rs b/espanso-match/src/rolling/mod.rs index 3936f61..b3b2636 100644 --- a/espanso-match/src/rolling/mod.rs +++ b/espanso-match/src/rolling/mod.rs @@ -79,10 +79,10 @@ impl RollingMatch { } pub struct StringMatchOptions { - case_insensitive: bool, - preserve_case_markers: bool, - left_word: bool, - right_word: bool, + pub case_insensitive: bool, + pub preserve_case_markers: bool, + pub left_word: bool, + pub right_word: bool, } impl Default for StringMatchOptions {