mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-26 20:09:19 +00:00
Fix the formatting issues
This commit is contained in:
parent
1852b27233
commit
2ca8ba783c
1 changed files with 45 additions and 45 deletions
|
@ -1,45 +1,45 @@
|
||||||
pub const GLOBAL_HELP: &str = "tasks
|
pub const GLOBAL_HELP: &str = "tasks
|
||||||
|
|
||||||
USAGE:
|
USAGE:
|
||||||
ra_tools <SUBCOMMAND>
|
ra_tools <SUBCOMMAND>
|
||||||
|
|
||||||
FLAGS:
|
FLAGS:
|
||||||
-h, --help Prints help information
|
-h, --help Prints help information
|
||||||
|
|
||||||
SUBCOMMANDS:
|
SUBCOMMANDS:
|
||||||
format
|
format
|
||||||
format-hook
|
format-hook
|
||||||
fuzz-tests
|
fuzz-tests
|
||||||
gen-syntax
|
gen-syntax
|
||||||
gen-tests
|
gen-tests
|
||||||
install-ra
|
install-ra
|
||||||
lint";
|
lint";
|
||||||
|
|
||||||
pub const INSTALL_RA_HELP: &str = "ra_tools-install-ra
|
pub const INSTALL_RA_HELP: &str = "ra_tools-install-ra
|
||||||
|
|
||||||
USAGE:
|
USAGE:
|
||||||
ra_tools.exe install-ra [FLAGS]
|
ra_tools.exe install-ra [FLAGS]
|
||||||
|
|
||||||
FLAGS:
|
FLAGS:
|
||||||
--client-code
|
--client-code
|
||||||
-h, --help Prints help information
|
-h, --help Prints help information
|
||||||
--jemalloc
|
--jemalloc
|
||||||
--server";
|
--server";
|
||||||
|
|
||||||
pub fn print_no_param_subcommand_help(subcommand: &str) {
|
pub fn print_no_param_subcommand_help(subcommand: &str) {
|
||||||
eprintln!(
|
eprintln!(
|
||||||
"ra_tools-{}
|
"ra_tools-{}
|
||||||
|
|
||||||
USAGE:
|
USAGE:
|
||||||
ra_tools {}
|
ra_tools {}
|
||||||
|
|
||||||
FLAGS:
|
FLAGS:
|
||||||
-h, --help Prints help information",
|
-h, --help Prints help information",
|
||||||
subcommand, subcommand
|
subcommand, subcommand
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub const INSTALL_RA_CONFLICT: &str =
|
pub const INSTALL_RA_CONFLICT: &str =
|
||||||
"error: The argument `--server` cannot be used with `--client-code`
|
"error: The argument `--server` cannot be used with `--client-code`
|
||||||
|
|
||||||
For more information try --help";
|
For more information try --help";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue