diff options
Diffstat (limited to 'crates/ra_cli/src/help.rs')
-rw-r--r-- | crates/ra_cli/src/help.rs | 145 |
1 files changed, 73 insertions, 72 deletions
diff --git a/crates/ra_cli/src/help.rs b/crates/ra_cli/src/help.rs index 5171578f0..2a74b8733 100644 --- a/crates/ra_cli/src/help.rs +++ b/crates/ra_cli/src/help.rs | |||
@@ -1,72 +1,73 @@ | |||
1 | pub const GLOBAL_HELP: &str = "ra-cli | 1 | pub const GLOBAL_HELP: &str = "ra-cli |
2 | 2 | ||
3 | USAGE: | 3 | USAGE: |
4 | ra_cli <SUBCOMMAND> | 4 | ra_cli <SUBCOMMAND> |
5 | 5 | ||
6 | FLAGS: | 6 | FLAGS: |
7 | -h, --help Prints help information | 7 | -h, --help Prints help information |
8 | 8 | ||
9 | SUBCOMMANDS: | 9 | SUBCOMMANDS: |
10 | analysis-bench | 10 | analysis-bench |
11 | analysis-stats | 11 | analysis-stats |
12 | highlight | 12 | highlight |
13 | parse | 13 | parse |
14 | symbols"; | 14 | symbols"; |
15 | 15 | ||
16 | pub const ANALYSIS_BENCH_HELP: &str = "ra_cli-analysis-bench | 16 | pub const ANALYSIS_BENCH_HELP: &str = "ra_cli-analysis-bench |
17 | 17 | ||
18 | USAGE: | 18 | USAGE: |
19 | ra_cli analysis-bench [FLAGS] [OPTIONS] [PATH] | 19 | ra_cli analysis-bench [FLAGS] [OPTIONS] [PATH] |
20 | 20 | ||
21 | FLAGS: | 21 | FLAGS: |
22 | -h, --help Prints help information | 22 | -h, --help Prints help information |
23 | -v, --verbose | 23 | -v, --verbose |
24 | 24 | ||
25 | OPTIONS: | 25 | OPTIONS: |
26 | --complete <PATH:LINE:COLUMN> Compute completions at this location | 26 | --complete <PATH:LINE:COLUMN> Compute completions at this location |
27 | --highlight <PATH> Hightlight this file | 27 | --highlight <PATH> Hightlight this file |
28 | 28 | ||
29 | ARGS: | 29 | ARGS: |
30 | <PATH> Project to analyse"; | 30 | <PATH> Project to analyse"; |
31 | 31 | ||
32 | pub const ANALYSIS_STATS_HELP: &str = "ra-cli-analysis-stats | 32 | pub const ANALYSIS_STATS_HELP: &str = "ra-cli-analysis-stats |
33 | 33 | ||
34 | USAGE: | 34 | USAGE: |
35 | ra_cli analysis-stats [FLAGS] [OPTIONS] [PATH] | 35 | ra_cli analysis-stats [FLAGS] [OPTIONS] [PATH] |
36 | 36 | ||
37 | FLAGS: | 37 | FLAGS: |
38 | -h, --help Prints help information | 38 | -h, --help Prints help information |
39 | --memory-usage | 39 | --memory-usage |
40 | -v, --verbose | 40 | -v, --verbose |
41 | 41 | -q, --quiet | |
42 | OPTIONS: | 42 | |
43 | -o <ONLY> | 43 | OPTIONS: |
44 | 44 | -o <ONLY> | |
45 | ARGS: | 45 | |
46 | <PATH>"; | 46 | ARGS: |
47 | 47 | <PATH>"; | |
48 | pub const HIGHLIGHT_HELP: &str = "ra-cli-highlight | 48 | |
49 | 49 | pub const HIGHLIGHT_HELP: &str = "ra-cli-highlight | |
50 | USAGE: | 50 | |
51 | ra_cli highlight [FLAGS] | 51 | USAGE: |
52 | 52 | ra_cli highlight [FLAGS] | |
53 | FLAGS: | 53 | |
54 | -h, --help Prints help information | 54 | FLAGS: |
55 | -r, --rainbow"; | 55 | -h, --help Prints help information |
56 | 56 | -r, --rainbow"; | |
57 | pub const SYMBOLS_HELP: &str = "ra-cli-symbols | 57 | |
58 | 58 | pub const SYMBOLS_HELP: &str = "ra-cli-symbols | |
59 | USAGE: | 59 | |
60 | ra_cli highlight [FLAGS] | 60 | USAGE: |
61 | 61 | ra_cli highlight [FLAGS] | |
62 | FLAGS: | 62 | |
63 | -h, --help Prints help inforamtion"; | 63 | FLAGS: |
64 | 64 | -h, --help Prints help inforamtion"; | |
65 | pub const PARSE_HELP: &str = "ra-cli-parse | 65 | |
66 | 66 | pub const PARSE_HELP: &str = "ra-cli-parse | |
67 | USAGE: | 67 | |
68 | ra_cli parse [FLAGS] | 68 | USAGE: |
69 | 69 | ra_cli parse [FLAGS] | |
70 | FLAGS: | 70 | |
71 | -h, --help Prints help inforamtion | 71 | FLAGS: |
72 | --no-dump"; | 72 | -h, --help Prints help inforamtion |
73 | --no-dump"; | ||