refactor: remove tmux-specific option in core_config

This commit is contained in:
graelo 2021-03-21 07:18:35 +01:00
parent ee14666333
commit 92507e66ce

View file

@ -72,12 +72,6 @@ pub struct CliOpt {
/// Optional target path where to store the selected matches. /// Optional target path where to store the selected matches.
#[clap(short = 'o', long = "output", parse(from_os_str))] #[clap(short = 'o', long = "output", parse(from_os_str))]
pub target_path: Option<path::PathBuf>, pub target_path: Option<path::PathBuf>,
/// Describes if the uppercased marker should be added to the output,
/// indicating if hint key was uppercased. This is only used by
/// tmux-copyrat, so it is hidden (skipped) from the CLI.
#[clap(skip)]
pub uppercased_marker: bool,
} }
/// Type introduced due to parsing limitation, /// Type introduced due to parsing limitation,