diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2018-01-24 22:05:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 22:05:49 +0300 |
commit | 6e9b89206f13dc560188c5636b3fcd7aa4c25f8d (patch) | |
tree | f1c4e3555d1144c42e4af6bd4716e6e3568c6ae0 /functions | |
parent | fabc473381e8390c9b968ea050231f404dbfab84 (diff) | |
parent | 87988cea26253a7b9b7918e7bc6304550b3a5e6f (diff) |
Merge pull request #726 from docwhat/pr/getColor-ignores-numbers
getColor() must always print result
Diffstat (limited to 'functions')
-rw-r--r-- | functions/colors.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/colors.zsh b/functions/colors.zsh index 253de7cb..7a748ab3 100644 --- a/functions/colors.zsh +++ b/functions/colors.zsh @@ -40,8 +40,8 @@ function getColor() { # color not found, so try to get the code 1=$(getColorCode $1) fi - echo -n "$1" fi + echo -n "$1" } # empty paramenter resets (stops) background color |