From badda57820f4105753819b141b8718cef05c9106 Mon Sep 17 00:00:00 2001 From: Pete Doherty Date: Wed, 27 Mar 2024 11:28:47 -0400 Subject: [PATCH] remove unnecessary public entities from rmuxinator module --- src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 19c99c9..748eea9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -42,17 +42,18 @@ fn run_tmux_command(command: &[String], wait: bool) -> Result Result>; } -pub struct TmuxWrapper; +struct TmuxWrapper; impl TmuxCommandRunner for TmuxWrapper { fn run_tmux_command(&self, command: &[String], wait: bool) -> Result> { run_tmux_command(command, wait) } } + fn build_pane_args(session_name: &str, window_index: &usize) -> Vec { vec![ String::from("split-window"),