add_ed/
messages.rs

1/// Help text, generally printed when "help" is entered as a command.
2pub const COMMAND_LIST: &str = include_str!("../COMMANDS_SHORT.md");
3/// Longer help text/manual, generally printed when "Help" is entered as a command.
4pub const COMMAND_DOCUMENTATION: &str = include_str!("../COMMANDS.md");
5
6/// Printed when 'h' command is called and no error has occured yet.
7pub const NO_ERROR: &str = "No errors recorded.";
8/// Printed when 'f' command is called and no default path is yet set.
9pub const NO_FILE: &str = "No default file currently set.";