mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-12 16:10:07 +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::collections::HashMap;
|
||||||
use std::str::FromStr;
|
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.
|
/// Main configuration, parsed from command line.
|
||||||
#[derive(Clap, Debug)]
|
#[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 error;
|
||||||
pub mod output_destination;
|
pub mod output_destination;
|
||||||
pub mod textbuf;
|
pub mod textbuf;
|
||||||
pub mod tmux;
|
|
||||||
pub mod ui;
|
pub mod ui;
|
||||||
|
|
||||||
use clap::Clap;
|
use clap::Clap;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue