hyper_scripter/args/
help_str.rs

1pub const TYPE_HELP: &str = "Type of the script, e.g. `sh`";
2pub const TAGS_HELP: &str = "Tags of the script"; // TODO: advanced topic?
3pub const EDIT_CONCRETE_QUERY_HELP: &str = "New script. `?` for new anonymous."; // TODO: dir
4pub const EDIT_QUERY_HELP: &str = "Target script.
5`?` for new anonymous, `-` or `^{N}` for previous script, and `={NAME}` for exact name matching.
6Otherwise, do fuzzy search.";
7pub const SCRIPT_QUERY_HELP: &str = "Target script.
8`-` or `^{N}` for previous script, and `={NAME}` for exact name matching.
9Otherwise, do fuzzy search.";
10pub const LIST_QUERY_HELP: &str = "Target script.
11`-` or `^{N}` for previous script, and `={NAME}` for exact name matching.
12Otherwise, do fuzzy search.
13Wildcard such as name/* is also allowed.";