Use fish_color_* colors instead of harcoding red, green, etc.

This commit is contained in:
Jorge Bucaran 2016-05-12 20:53:31 +09:00
parent d1d50cd2e0
commit 4b27eaa82f
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30

View file

@ -1197,9 +1197,9 @@ end
function __fisher_log -a log message fd
set -l nc (set_color normal)
set -l okay (set_color green)
set -l info (set_color cyan)
set -l error (set_color red)
set -l okay (set_color $fish_color_match)
set -l info (set_color $fish_color_match)
set -l error (set_color $fish_color_error)
switch "$fd"
case "/dev/null"