aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_cli/src/help.rs
blob: bf31472acc06fa0bf558b217353864dc3ac0e5ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
pub fn print_global_help() {
    println!(
        "ra-cli

USAGE:
    ra_cli <SUBCOMMAND>

FLAGS:
    -h, --help        Prints help information

SUBCOMMANDS:
    analysis-bench
    analysis-stats
    highlight
    parse
    symbols"
    )
}

pub fn print_analysis_bench_help() {
    println!(
        "ra_cli-analysis-bench

USAGE:
    ra_cli analysis-bench [FLAGS] [OPTIONS] [PATH]

FLAGS:
    -h, --help        Prints help information
    -v, --verbose
    
OPTIONS:
    --complete <PATH:LINE:COLUMN>    Compute completions at this location
    --highlight <PATH>               Hightlight this file
    
ARGS:
    <PATH>    Project to analyse"
    )
}

pub fn print_analysis_stats_help() {
    println!(
        "ra-cli-analysis-stats

USAGE:
    ra_cli analysis-stats [FLAGS] [OPTIONS] [PATH]
    
FLAGS:
    -h, --help            Prints help information
        --memory-usage
    -v, --verbose
    
OPTIONS:
    -o <ONLY>
    
ARGS:
    <PATH>"
    )
}

pub fn print_highlight_help() {
    println!(
        "ra-cli-highlight
    
USAGE:
    ra_cli highlight [FLAGS]
    
FLAGS:
    -h, --help       Prints help information
    -r, --rainbow"
    )
}

pub fn print_symbols_help() {
    println!(
        "ra-cli-symbols
    
USAGE:
    ra_cli highlight [FLAGS]
    
FLAGS:
    -h, --help    Prints help inforamtion"
    )
}

pub fn print_parse_help() {
    println!(
        "ra-cli-parse
    
USAGE:
    ra_cli parse [FLAGS]
    
FLAGS:
    -h, --help       Prints help inforamtion
        --no-dump"
    )
}