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.rs75
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
3pub const GLOBAL_HELP: &str = "ra-cli
4
5USAGE:
6 ra_cli <SUBCOMMAND>
7
8FLAGS:
9 -h, --help Prints help information
10
11SUBCOMMANDS:
12 analysis-bench
13 analysis-stats
14 highlight
15 parse
16 symbols";
17
18pub const ANALYSIS_BENCH_HELP: &str = "ra_cli-analysis-bench
19
20USAGE:
21 ra_cli analysis-bench [FLAGS] [OPTIONS] [PATH]
22
23FLAGS:
24 -h, --help Prints help information
25 -v, --verbose
26
27OPTIONS:
28 --complete <PATH:LINE:COLUMN> Compute completions at this location
29 --highlight <PATH> Hightlight this file
30
31ARGS:
32 <PATH> Project to analyse";
33
34pub const ANALYSIS_STATS_HELP: &str = "ra-cli-analysis-stats
35
36USAGE:
37 ra_cli analysis-stats [FLAGS] [OPTIONS] [PATH]
38
39FLAGS:
40 -h, --help Prints help information
41 --memory-usage
42 -v, --verbose
43 -q, --quiet
44
45OPTIONS:
46 -o <ONLY>
47
48ARGS:
49 <PATH>";
50
51pub const HIGHLIGHT_HELP: &str = "ra-cli-highlight
52
53USAGE:
54 ra_cli highlight [FLAGS]
55
56FLAGS:
57 -h, --help Prints help information
58 -r, --rainbow";
59
60pub const SYMBOLS_HELP: &str = "ra-cli-symbols
61
62USAGE:
63 ra_cli highlight [FLAGS]
64
65FLAGS:
66 -h, --help Prints help inforamtion";
67
68pub const PARSE_HELP: &str = "ra-cli-parse
69
70USAGE:
71 ra_cli parse [FLAGS]
72
73FLAGS:
74 -h, --help Prints help inforamtion
75 --no-dump";