cli: add engine flag

This permits switching between the different regex engine modes that
ripgrep supports. The purpose of this flag is to make it easier to
extend ripgrep with additional regex engines.

Closes #1488, Closes #1502
This commit is contained in:
pierrenn
2020-02-28 00:58:56 +09:00
committed by Andrew Gallant
parent aab3d80374
commit 3a6a24a52a
5 changed files with 68 additions and 6 deletions

View File

@@ -582,7 +582,8 @@ impl ArgMatches {
} else if self.is_present("auto-hybrid-regex") {
self.matcher_engine("auto", patterns)
} else {
self.matcher_engine("default", patterns)
let engine = self.value_of_lossy("engine").unwrap();
self.matcher_engine(&engine, patterns)
}
}