summaryrefslogtreecommitdiffstats
path: root/default-plugins
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
parent847444cd0b10002f9771fdfaec1ea0ab1b8e96b1 (diff)
chore(plugin): shuffle helper library names and versions
Diffstat (limited to 'default-plugins')
-rw-r--r--default-plugins/status-bar/Cargo.toml2
-rw-r--r--default-plugins/status-bar/src/main.rs2
-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
5 files changed, 5 insertions, 5 deletions
diff --git a/default-plugins/status-bar/Cargo.toml b/default-plugins/status-bar/Cargo.toml
index 8c6cc85de..407dd4990 100644
--- a/default-plugins/status-bar/Cargo.toml
+++ b/default-plugins/status-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/status-bar/src/main.rs b/default-plugins/status-bar/src/main.rs
index 2613ba79a..e1a79d49a 100644
--- a/default-plugins/status-bar/src/main.rs
+++ b/default-plugins/status-bar/src/main.rs
@@ -5,7 +5,7 @@ use ansi_term::Style;
use std::fmt::{Display, Error, Formatter};
use zellij_tile::prelude::*;
-use zellij_tile_extra::*;
+use zellij_tile_utils::style;
use first_line::{ctrl_keys, superkey};
use second_line::keybinds;
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);