feat: output to clipboard or tmux buffer

This commit is contained in:
graelo 2021-03-17 07:55:24 +01:00
parent 849dd37b05
commit 646ee8b9fb
8 changed files with 164 additions and 25 deletions

7
src/selection.rs Normal file
View file

@ -0,0 +1,7 @@
use crate::output_destination::OutputDestination;
pub struct Selection {
pub text: String,
pub uppercased: bool,
pub output_destination: OutputDestination,
}