Skip to content

Commit

Permalink
make TmuxOptions private
Browse files Browse the repository at this point in the history
  • Loading branch information
LoricAndre committed Nov 27, 2024
1 parent 46c36b8 commit b732c51
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions skim/src/tmux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit b732c51

Please sign in to comment.