Remove unused --lang argument

ida_star
Wilfred Hughes 2021-08-27 22:11:30 +07:00
parent aff0131ecb
commit 35779dde2e
2 changed files with 4 additions and 6 deletions

@ -7,6 +7,10 @@ matching of delimiters in Clojure, Elisp and JSX.
JSON (legacy parser): fixed parsing string literals (broken in 0.7).
### Command Line Interface
Removed the unused `--lang` argument.
## 0.7
### Git integration

@ -40,12 +40,6 @@ fn parse_args() -> (String, String, String) {
.version(VERSION)
.about("A syntax aware diff.")
.author("Wilfred Hughes")
.arg(
Arg::with_name("LANGUAGE")
.long("lang")
.takes_value(true)
.help("Override the language parser"),
)
.arg(Arg::with_name("positional_args").multiple(true))
.setting(AppSettings::ArgRequiredElseHelp)
.get_matches();