summaryrefslogtreecommitdiffstats
path: root/default-plugins/tab-bar
diff options
context:
space:
mode:
authorBrooks J Rady <b.j.rady@gmail.com>2021-05-04 23:31:30 +0100
committerBrooks J Rady <b.j.rady@gmail.com>2021-05-04 23:31:30 +0100
commit6e5600efc8a9ae2136128c0c4f348d45ee739203 (patch)
tree3e117a825fe70e56a157c176083f816a1a900e3d /default-plugins/tab-bar
parent847444cd0b10002f9771fdfaec1ea0ab1b8e96b1 (diff)
chore(plugin): shuffle helper library names and versions
Diffstat (limited to 'default-plugins/tab-bar')
-rw-r--r--default-plugins/tab-bar/Cargo.toml2
-rw-r--r--default-plugins/tab-bar/src/line.rs2
-rw-r--r--default-plugins/tab-bar/src/tab.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/default-plugins/tab-bar/Cargo.toml b/default-plugins/tab-bar/Cargo.toml
index d27144ddc..dd91bdb5c 100644
--- a/default-plugins/tab-bar/Cargo.toml
+++ b/default-plugins/tab-bar/Cargo.toml
@@ -9,4 +9,4 @@ license = "MIT"
colored = "2"
ansi_term = "0.12"
zellij-tile = { path = "../../zellij-tile" }
-zellij-tile-extra = { path = "../../zellij-tile-extra" } \ No newline at end of file
+zellij-tile-utils = { path = "../../zellij-tile-utils" } \ No newline at end of file
diff --git a/default-plugins/tab-bar/src/line.rs b/default-plugins/tab-bar/src/line.rs
index cd8346557..89a7aa1b3 100644
--- a/default-plugins/tab-bar/src/line.rs
+++ b/default-plugins/tab-bar/src/line.rs
@@ -2,7 +2,7 @@ use ansi_term::ANSIStrings;
use crate::{LinePart, ARROW_SEPARATOR};
use zellij_tile::prelude::*;
-use zellij_tile_extra::*;
+use zellij_tile_utils::style;
fn get_current_title_len(current_title: &[LinePart]) -> usize {
current_title
diff --git a/default-plugins/tab-bar/src/tab.rs b/default-plugins/tab-bar/src/tab.rs
index b89ccb7b7..7c1fe6b32 100644
--- a/default-plugins/tab-bar/src/tab.rs
+++ b/default-plugins/tab-bar/src/tab.rs
@@ -1,7 +1,7 @@
use crate::{LinePart, ARROW_SEPARATOR};
use ansi_term::ANSIStrings;
use zellij_tile::prelude::*;
-use zellij_tile_extra::*;
+use zellij_tile_utils::style;
pub fn active_tab(text: String, palette: Palette) -> LinePart {
let left_separator = style!(palette.bg, palette.green).paint(ARROW_SEPARATOR);