copyrat 0.8.3

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