mirror of
https://github.com/IlanCosman/tide.git
synced 2024-12-25 04:53:11 +03:00
Add $_tide_color_normal var for speed
This commit is contained in:
parent
6a98714b7b
commit
9b8404bfb7
@ -2,10 +2,6 @@ function _tide_pwd
|
|||||||
set -l truncatedPwd $_tide_pwd
|
set -l truncatedPwd $_tide_pwd
|
||||||
set -g _tide_pwd_output $_tide_pwd
|
set -g _tide_pwd_output $_tide_pwd
|
||||||
|
|
||||||
set -l _tide_pwd_truncated_dir_color (set_color $tide_pwd_color_truncated_dirs)
|
|
||||||
set -l _tide_pwd_anchor_color (set_color -o $tide_pwd_color_anchors)
|
|
||||||
set -l _tide_pwd_dir_color (set_color $tide_pwd_color_dirs)
|
|
||||||
|
|
||||||
if not test -w $PWD
|
if not test -w $PWD
|
||||||
set _tide_pwd_output $_tide_pwd_dir_color{$tide_pwd_unwritable_icon}' '$_tide_pwd_output
|
set _tide_pwd_output $_tide_pwd_dir_color{$tide_pwd_unwritable_icon}' '$_tide_pwd_output
|
||||||
end
|
end
|
||||||
@ -14,7 +10,7 @@ function _tide_pwd
|
|||||||
|
|
||||||
for dir in $_tide_split_pwd
|
for dir in $_tide_split_pwd
|
||||||
if contains $dir $_tide_pwd_anchors
|
if contains $dir $_tide_pwd_anchors
|
||||||
set _tide_pwd_output (string replace $dir "$_tide_pwd_anchor_color"$dir(set_color normal) $_tide_pwd_output)
|
set _tide_pwd_output (string replace $dir (set_color -o $tide_pwd_color_anchors)$dir$_tide_color_normal $_tide_pwd_output)
|
||||||
else
|
else
|
||||||
if test (string length $truncatedPwd) -gt $_tide_pwd_max_length
|
if test (string length $truncatedPwd) -gt $_tide_pwd_max_length
|
||||||
set -l dirTruncated $dir
|
set -l dirTruncated $dir
|
||||||
@ -26,10 +22,10 @@ function _tide_pwd
|
|||||||
set -a truncatedList $dirTruncated
|
set -a truncatedList $dirTruncated
|
||||||
|
|
||||||
set truncatedPwd (string replace $dir $dirTruncated $truncatedPwd)
|
set truncatedPwd (string replace $dir $dirTruncated $truncatedPwd)
|
||||||
set _tide_pwd_output (string replace $dir "$_tide_pwd_truncated_dir_color"$dirTruncated $_tide_pwd_output)
|
set _tide_pwd_output (string replace $dir (set_color $tide_pwd_color_truncated_dirs)$dirTruncated $_tide_pwd_output)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
set _tide_pwd_output (string replace -a '/' "$_tide_pwd_dir_color"'/' $_tide_pwd_output)
|
set _tide_pwd_output (string replace -a '/' (set_color $tide_pwd_color_dirs)'/' $_tide_pwd_output)
|
||||||
end
|
end
|
@ -1,3 +1,3 @@
|
|||||||
function _tide_decolor -a text
|
function _tide_decolor -a text
|
||||||
string replace -a (set_color normal) '' "$text" | string replace -ar '\e\[[0-9;]*m' ''
|
string replace -a $_tide_color_normal '' "$text" | string replace -ar '\e\[[0-9;]*m' ''
|
||||||
end
|
end
|
@ -1,8 +1,5 @@
|
|||||||
function _tide_left_prompt
|
function _tide_left_prompt
|
||||||
for item in _tide_item_{$tide_left_prompt_items}
|
for item in _tide_item_{$tide_left_prompt_items}
|
||||||
set -l itemOutput ($item)
|
printf '%b' ($item)$_tide_color_normal
|
||||||
printf '%b' "$itemOutput"
|
|
||||||
|
|
||||||
set_color normal
|
|
||||||
end
|
end
|
||||||
end
|
end
|
@ -24,10 +24,7 @@ function _fetch_right_prompt_items
|
|||||||
printf '%s' ' '
|
printf '%s' ' '
|
||||||
|
|
||||||
for item in _tide_item_{$tide_right_prompt_items}
|
for item in _tide_item_{$tide_right_prompt_items}
|
||||||
set -l itemOutput ($item)
|
printf '%s' ($item)$_tide_color_normal
|
||||||
printf '%s' "$itemOutput"
|
|
||||||
|
|
||||||
set_color normal
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -14,6 +14,7 @@ function _set_tide_defaults
|
|||||||
_set _tide_color_green 5FD700
|
_set _tide_color_green 5FD700
|
||||||
_set _tide_color_light_blue 00AFFF
|
_set _tide_color_light_blue 00AFFF
|
||||||
_set _tide_color_dark_blue 0087AF
|
_set _tide_color_dark_blue 0087AF
|
||||||
|
_set _tide_color_normal (set_color normal)
|
||||||
# ---------Prompt Connection---------
|
# ---------Prompt Connection---------
|
||||||
_set tide_prompt_connection_color 6C6C6C
|
_set tide_prompt_connection_color 6C6C6C
|
||||||
_set tide_prompt_connection_icon ' '
|
_set tide_prompt_connection_icon ' '
|
||||||
|
Loading…
Reference in New Issue
Block a user