configs  Diff

Differences From Artifact [905dffe455]:

To Artifact [fee281d990]:


1
2
3
4
5
6
7
8
9
10
11
12
13


14
function fish_right_prompt
	set -l code $status
	set -l jobs (jobs | wc -l)

	if test $jobs -gt 0
		set_color $fish_color_jobs
		echo "$jobs "
	end

	if test $code -gt 0
		set_color $fish_color_error
		echo "$code "
	end


end













>
>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function fish_right_prompt
	set -l code $status
	set -l jobs (jobs | wc -l)

	if test $jobs -gt 0
		set_color $fish_color_jobs
		echo "$jobs "
	end

	if test $code -gt 0
		set_color $fish_color_error
		echo "$code "
	end

	set_color normal
end