aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_cli/src/help.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_cli/src/help.rs')
-rw-r--r--crates/ra_cli/src/help.rs145
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 @@
1pub const GLOBAL_HELP: &str = "ra-cli 1pub const GLOBAL_HELP: &str = "ra-cli
2 2
3USAGE: 3USAGE:
4 ra_cli <SUBCOMMAND> 4 ra_cli <SUBCOMMAND>
5 5
6FLAGS: 6FLAGS:
7 -h, --help Prints help information 7 -h, --help Prints help information
8 8
9SUBCOMMANDS: 9SUBCOMMANDS:
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
16pub const ANALYSIS_BENCH_HELP: &str = "ra_cli-analysis-bench 16pub const ANALYSIS_BENCH_HELP: &str = "ra_cli-analysis-bench
17 17
18USAGE: 18USAGE:
19 ra_cli analysis-bench [FLAGS] [OPTIONS] [PATH] 19 ra_cli analysis-bench [FLAGS] [OPTIONS] [PATH]
20 20
21FLAGS: 21FLAGS:
22 -h, --help Prints help information 22 -h, --help Prints help information
23 -v, --verbose 23 -v, --verbose
24 24
25OPTIONS: 25OPTIONS:
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
29ARGS: 29ARGS:
30 <PATH> Project to analyse"; 30 <PATH> Project to analyse";
31 31
32pub const ANALYSIS_STATS_HELP: &str = "ra-cli-analysis-stats 32pub const ANALYSIS_STATS_HELP: &str = "ra-cli-analysis-stats
33 33
34USAGE: 34USAGE:
35 ra_cli analysis-stats [FLAGS] [OPTIONS] [PATH] 35 ra_cli analysis-stats [FLAGS] [OPTIONS] [PATH]
36 36
37FLAGS: 37FLAGS:
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
42OPTIONS: 42
43 -o <ONLY> 43OPTIONS:
44 44 -o <ONLY>
45ARGS: 45
46 <PATH>"; 46ARGS:
47 47 <PATH>";
48pub const HIGHLIGHT_HELP: &str = "ra-cli-highlight 48
49 49pub const HIGHLIGHT_HELP: &str = "ra-cli-highlight
50USAGE: 50
51 ra_cli highlight [FLAGS] 51USAGE:
52 52 ra_cli highlight [FLAGS]
53FLAGS: 53
54 -h, --help Prints help information 54FLAGS:
55 -r, --rainbow"; 55 -h, --help Prints help information
56 56 -r, --rainbow";
57pub const SYMBOLS_HELP: &str = "ra-cli-symbols 57
58 58pub const SYMBOLS_HELP: &str = "ra-cli-symbols
59USAGE: 59
60 ra_cli highlight [FLAGS] 60USAGE:
61 61 ra_cli highlight [FLAGS]
62FLAGS: 62
63 -h, --help Prints help inforamtion"; 63FLAGS:
64 64 -h, --help Prints help inforamtion";
65pub const PARSE_HELP: &str = "ra-cli-parse 65
66 66pub const PARSE_HELP: &str = "ra-cli-parse
67USAGE: 67
68 ra_cli parse [FLAGS] 68USAGE:
69 69 ra_cli parse [FLAGS]
70FLAGS: 70
71 -h, --help Prints help inforamtion 71FLAGS:
72 --no-dump"; 72 -h, --help Prints help inforamtion
73 --no-dump";