Do not generate false color uvars if value is not previously set.

This commit is contained in:
Jorge Bucaran 2016-05-01 11:56:59 +09:00
parent 81966bb8fc
commit 40b6d295d9
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30

View file

@ -1466,6 +1466,9 @@ end
function __fisher_restore_fish_colors
command awk '
$0 == "" {
next
}
NR == 1 {
print("set -U fish_color_normal " $0)
}