mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-12 08:00:08 +01:00
refactor: tmux -> comm/tmux.rs
This commit is contained in:
parent
7c7799ffbd
commit
9426d8bfee
4 changed files with 3 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ use clap::Clap;
|
|||
use std::collections::HashMap;
|
||||
use std::str::FromStr;
|
||||
|
||||
use copyrat::{error, output_destination::OutputDestination, tmux, ui::Selection, CliOpt};
|
||||
use copyrat::{comm::tmux, error, output_destination::OutputDestination, ui::Selection, CliOpt};
|
||||
|
||||
/// Main configuration, parsed from command line.
|
||||
#[derive(Clap, Debug)]
|
||||
|
|
|
|||
1
src/comm/mod.rs
Normal file
1
src/comm/mod.rs
Normal file
|
|
@ -0,0 +1 @@
|
|||
pub mod tmux;
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
pub mod comm;
|
||||
pub mod error;
|
||||
pub mod output_destination;
|
||||
pub mod textbuf;
|
||||
pub mod tmux;
|
||||
pub mod ui;
|
||||
|
||||
use clap::Clap;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue