fix(tmux): rename variable to avoid naming clash
This commit is contained in:
parent
5a03bc4bc0
commit
ad6aa7bc47
1 changed files with 4 additions and 4 deletions
|
@ -108,19 +108,19 @@ build_window_format() {
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
local window_format
|
local final_window_format
|
||||||
|
|
||||||
if [[ $window_number_position == "right" ]]
|
if [[ $window_number_position == "right" ]]
|
||||||
then
|
then
|
||||||
window_format="$show_left_separator$show_text$show_middle_separator$show_number$show_right_separator"
|
final_window_format="$show_left_separator$show_text$show_middle_separator$show_number$show_right_separator"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $window_number_position == "left" ]]
|
if [[ $window_number_position == "left" ]]
|
||||||
then
|
then
|
||||||
window_format="$show_left_separator$show_number$show_middle_separator$show_text$show_right_separator"
|
final_window_format="$show_left_separator$show_number$show_middle_separator$show_text$show_right_separator"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo $window_format
|
echo $final_window_format
|
||||||
}
|
}
|
||||||
|
|
||||||
build_status_module() {
|
build_status_module() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue