mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-12 16:10:07 +01:00
9 lines
306 B
Rust
9 lines
306 B
Rust
use crate::config::extended::OutputDestination;
|
|
|
|
/// Represents the text selected by the user, along with if it was uppercased
|
|
/// and the output destination (Tmux buffer or Clipboard).
|
|
pub struct Selection {
|
|
pub text: String,
|
|
pub uppercased: bool,
|
|
pub output_destination: OutputDestination,
|
|
}
|