Shorten already-useless variable names

This commit is contained in:
Ilan Cosman 2022-05-30 10:34:53 -07:00
parent 844ebb6ee7
commit defabdd772
2 changed files with 5 additions and 5 deletions

View File

@ -26,6 +26,6 @@ end
function _tide_item_newline
set_color $prev_bg_color -b normal
var=tide_"$_tide_side"_prompt_suffix echo $$var
v=tide_"$_tide_side"_prompt_suffix echo $$v
set -g add_prefix
end

View File

@ -1,11 +1,11 @@
function _tide_print_item -a item
var=tide_"$item"_bg_color set -f item_bg_color $$var
v=tide_"$item"_bg_color set -f item_bg_color $$v
if set -e add_prefix
set_color $item_bg_color -b normal
var=tide_"$_tide_side"_prompt_prefix echo -ns $$var
v=tide_"$_tide_side"_prompt_prefix echo -ns $$v
else if test "$item_bg_color" = "$prev_bg_color"
var=tide_"$_tide_side"_prompt_separator_same_color echo -ns $_tide_color_separator_same_color$$var
v=tide_"$_tide_side"_prompt_separator_same_color echo -ns $_tide_color_separator_same_color$$v
else if test $_tide_side = left
set_color $prev_bg_color -b $item_bg_color
echo -ns $tide_left_prompt_separator_diff_color
@ -14,7 +14,7 @@ function _tide_print_item -a item
echo -ns $tide_right_prompt_separator_diff_color
end
var=tide_"$item"_color set_color $$var -b $item_bg_color
v=tide_"$item"_color set_color $$v -b $item_bg_color
echo -ns $_tide_pad $argv[2..] $_tide_pad