mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-18 02:43:51 +01:00
9 lines
294 B
Rust
9 lines
294 B
Rust
use crate::comm::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,
|
|
}
|