summaryrefslogtreecommitdiffstats
path: root/src/structures
diff options
context:
space:
mode:
authorDenis Isidoro <denisidoro@users.noreply.github.com>2020-04-10 23:01:35 -0300
committerGitHub <noreply@github.com>2020-04-10 23:01:35 -0300
commit6678cda0322406c75a97a5977491352acef870bb (patch)
tree1d118dd97066cb2809fa6f46b46950c0ed241867 /src/structures
parent1f5db34902a0e552fe60971c0047ebf4987122ac (diff)
Add support for post-choice manipulation (#335)
Fixes #325
Diffstat (limited to 'src/structures')
-rw-r--r--src/structures/finder.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/structures/finder.rs b/src/structures/finder.rs
index 8e23035..ccbe8a2 100644
--- a/src/structures/finder.rs
+++ b/src/structures/finder.rs
@@ -12,6 +12,7 @@ pub struct Opts {
pub suggestion_type: SuggestionType,
pub delimiter: Option<String>,
pub column: Option<u8>,
+ pub map: Option<String>,
}
impl Default for Opts {
@@ -29,6 +30,7 @@ impl Default for Opts {
suggestion_type: SuggestionType::SingleRecommendation,
column: None,
delimiter: None,
+ map: None,
}
}
}