mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-16 18:03:51 +01:00
8 lines
171 B
Rust
8 lines
171 B
Rust
|
|
use crate::output_destination::OutputDestination;
|
||
|
|
|
||
|
|
pub struct Selection {
|
||
|
|
pub text: String,
|
||
|
|
pub uppercased: bool,
|
||
|
|
pub output_destination: OutputDestination,
|
||
|
|
}
|