feat: allow using line continuations in templates

This commit is contained in:
iff 2023-08-11 15:29:10 +02:00
parent a193a86a5f
commit 498a134da3
4 changed files with 8 additions and 11 deletions

View file

@ -42,7 +42,7 @@ pub fn get_best_match_file(input: &str) -> Option<String> {
.map(|file| {
let file = file.unwrap();
file.file_name().into_string().unwrap().replace(" ", "\\ ")
file.file_name().into_string().unwrap().replace(' ', "\\ ")
})
.collect::<Vec<String>>();