mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-15 17:33:51 +01:00
9 lines
253 B
Rust
9 lines
253 B
Rust
use clap::{ArgEnum, Parser};
|
|
|
|
/// Describes if, during rendering, a hint should aligned to the leading edge of
|
|
/// the matched text, or to its trailing edge.
|
|
#[derive(Debug, Clone, ArgEnum, Parser)]
|
|
pub enum HintAlignment {
|
|
Leading,
|
|
Trailing,
|
|
}
|