refactor: improve test

This commit is contained in:
Maciej Sypien 2024-09-22 22:42:11 +02:00
parent dd1c215631
commit e631a41278
No known key found for this signature in database
GPG key ID: 10BC01EDA6827DC8
11 changed files with 42 additions and 44 deletions

View file

@ -61,16 +61,3 @@ tmux_set_window_option_now() {
_value="$2"
tmux set-window-option -gq "$_option_name" "$_value"
}
# return the value of status style
tmux_get_statusstyle() {
local _val
_val=$(tmux show-option -gqv status-style)
echo "$_val"
}
tmux_get_statusleft() {
local _val
_val=$(tmux show-option -gqv status-left)
echo "$_val"
}