diff options
-rw-r--r-- | crates/rust-analyzer/src/bin/args.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/rust-analyzer/src/bin/args.rs b/crates/rust-analyzer/src/bin/args.rs index 5ad3963a2..993d3d0b6 100644 --- a/crates/rust-analyzer/src/bin/args.rs +++ b/crates/rust-analyzer/src/bin/args.rs | |||
@@ -171,14 +171,16 @@ ARGS: | |||
171 | rust-analyzer-analysis-bench | 171 | rust-analyzer-analysis-bench |
172 | 172 | ||
173 | USAGE: | 173 | USAGE: |
174 | rust-analyzer analysis-bench [FLAGS] [OPTIONS] [PATH] | 174 | rust-analyzer analysis-bench [FLAGS] [OPTIONS] |
175 | 175 | ||
176 | FLAGS: | 176 | FLAGS: |
177 | -h, --help Prints help information | 177 | -h, --help Prints help information |
178 | -v, --verbose | 178 | -v, --verbose |
179 | 179 | ||
180 | OPTIONS: | 180 | OPTIONS: |
181 | --project <PATH> Path to directory with Cargo.toml | ||
181 | --complete <PATH:LINE:COLUMN> Compute completions at this location | 182 | --complete <PATH:LINE:COLUMN> Compute completions at this location |
183 | --goto-def <PATH:LINE:COLUMN> Compute goto definition at this location | ||
182 | --highlight <PATH> Hightlight this file | 184 | --highlight <PATH> Hightlight this file |
183 | 185 | ||
184 | ARGS: | 186 | ARGS: |
@@ -187,7 +189,7 @@ ARGS: | |||
187 | return Ok(Err(HelpPrinted)); | 189 | return Ok(Err(HelpPrinted)); |
188 | } | 190 | } |
189 | 191 | ||
190 | let path: PathBuf = matches.opt_value_from_str("--path")?.unwrap_or_default(); | 192 | let path: PathBuf = matches.opt_value_from_str("--project")?.unwrap_or_default(); |
191 | let highlight_path: Option<String> = matches.opt_value_from_str("--highlight")?; | 193 | let highlight_path: Option<String> = matches.opt_value_from_str("--highlight")?; |
192 | let complete_path: Option<Position> = matches.opt_value_from_str("--complete")?; | 194 | let complete_path: Option<Position> = matches.opt_value_from_str("--complete")?; |
193 | let goto_def_path: Option<Position> = matches.opt_value_from_str("--goto-def")?; | 195 | let goto_def_path: Option<Position> = matches.opt_value_from_str("--goto-def")?; |