diff options
Diffstat (limited to 'crates/ra_tools/src')
-rw-r--r-- | crates/ra_tools/src/help.rs | 90 |
1 files changed, 45 insertions, 45 deletions
diff --git a/crates/ra_tools/src/help.rs b/crates/ra_tools/src/help.rs index 6dde6c2d2..9eb4dfbe4 100644 --- a/crates/ra_tools/src/help.rs +++ b/crates/ra_tools/src/help.rs | |||
@@ -1,45 +1,45 @@ | |||
1 | pub const GLOBAL_HELP: &str = "tasks | 1 | pub const GLOBAL_HELP: &str = "tasks |
2 | 2 | ||
3 | USAGE: | 3 | USAGE: |
4 | ra_tools <SUBCOMMAND> | 4 | ra_tools <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 | format | 10 | format |
11 | format-hook | 11 | format-hook |
12 | fuzz-tests | 12 | fuzz-tests |
13 | gen-syntax | 13 | gen-syntax |
14 | gen-tests | 14 | gen-tests |
15 | install-ra | 15 | install-ra |
16 | lint"; | 16 | lint"; |
17 | 17 | ||
18 | pub const INSTALL_RA_HELP: &str = "ra_tools-install-ra | 18 | pub const INSTALL_RA_HELP: &str = "ra_tools-install-ra |
19 | 19 | ||
20 | USAGE: | 20 | USAGE: |
21 | ra_tools.exe install-ra [FLAGS] | 21 | ra_tools.exe install-ra [FLAGS] |
22 | 22 | ||
23 | FLAGS: | 23 | FLAGS: |
24 | --client-code | 24 | --client-code |
25 | -h, --help Prints help information | 25 | -h, --help Prints help information |
26 | --jemalloc | 26 | --jemalloc |
27 | --server"; | 27 | --server"; |
28 | 28 | ||
29 | pub fn print_no_param_subcommand_help(subcommand: &str) { | 29 | pub fn print_no_param_subcommand_help(subcommand: &str) { |
30 | eprintln!( | 30 | eprintln!( |
31 | "ra_tools-{} | 31 | "ra_tools-{} |
32 | 32 | ||
33 | USAGE: | 33 | USAGE: |
34 | ra_tools {} | 34 | ra_tools {} |
35 | 35 | ||
36 | FLAGS: | 36 | FLAGS: |
37 | -h, --help Prints help information", | 37 | -h, --help Prints help information", |
38 | subcommand, subcommand | 38 | subcommand, subcommand |
39 | ); | 39 | ); |
40 | } | 40 | } |
41 | 41 | ||
42 | pub const INSTALL_RA_CONFLICT: &str = | 42 | pub const INSTALL_RA_CONFLICT: &str = |
43 | "error: The argument `--server` cannot be used with `--client-code` | 43 | "error: The argument `--server` cannot be used with `--client-code` |
44 | 44 | ||
45 | For more information try --help"; | 45 | For more information try --help"; |