mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2026-02-02 09:25:11 +01:00
9 lines
257 B
Rust
9 lines
257 B
Rust
use clap::{Parser, ValueEnum};
|
|
|
|
/// Describes if, during rendering, a hint should aligned to the leading edge of
|
|
/// the matched text, or to its trailing edge.
|
|
#[derive(Debug, Clone, ValueEnum, Parser)]
|
|
pub enum HintAlignment {
|
|
Leading,
|
|
Trailing,
|
|
}
|