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