From b732c51271710a1c9dba8c9d2e096dcaa1da1593 Mon Sep 17 00:00:00 2001 From: LoricAndre Date: Wed, 27 Nov 2024 15:55:03 +0100 Subject: [PATCH] make TmuxOptions private --- skim/src/tmux.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/skim/src/tmux.rs b/skim/src/tmux.rs index 21901ea5..1f1fc7ef 100644 --- a/skim/src/tmux.rs +++ b/skim/src/tmux.rs @@ -35,11 +35,11 @@ impl From<&str> for TmuxWindowDir { } #[derive(Debug, PartialEq, Eq)] -pub struct TmuxOptions<'a> { - pub width: &'a str, - pub height: &'a str, - pub x: &'a str, - pub y: &'a str, +struct TmuxOptions<'a> { + width: &'a str, + height: &'a str, + x: &'a str, + y: &'a str, } struct SkimTmuxOutput {