copyrat 0.8.3

A tmux plugin for copy-pasting within tmux panes.
Documentation
1
2
3
4
5
6
7
8
9
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,
}