Add a command for showing config reference

This commit is contained in:
Roey Darwish Dror
2020-06-30 10:01:22 +03:00
parent e38252d95d
commit e542054229
2 changed files with 16 additions and 1 deletions

View File

@@ -13,6 +13,8 @@ use structopt::StructOpt;
use strum::{EnumIter, EnumString, EnumVariantNames, IntoEnumIterator, VariantNames};
use which_crate::which;
pub static EXAMPLE_CONFIG: &str = include_str!("../config.example.toml");
#[allow(unused_macros)]
macro_rules! str_value {
($section:ident, $value:ident) => {
@@ -195,7 +197,7 @@ impl ConfigFile {
if !config_path.exists() {
debug!("No configuration exists");
write(&config_path, include_str!("../config.example.toml")).map_err(|e| {
write(&config_path, EXAMPLE_CONFIG).map_err(|e| {
debug!(
"Unable to write the example configuration file to {}: {}. Using blank config.",
config_path.display(),
@@ -275,6 +277,10 @@ pub struct CommandLineArgs {
#[structopt(long = "edit-config")]
edit_config: bool,
/// Show config reference
#[structopt(long = "config-reference")]
show_config_reference: bool,
/// Run inside tmux
#[structopt(short = "t", long = "tmux")]
run_in_tmux: bool,
@@ -324,6 +330,10 @@ impl CommandLineArgs {
pub fn edit_config(&self) -> bool {
self.edit_config
}
pub fn show_config_reference(&self) -> bool {
self.show_config_reference
}
}
/// Represents the application configuration