diff options
author | Matt Singleton <msingleton@aclu.org> | 2020-09-15 09:30:15 -0500 |
---|---|---|
committer | Matt Singleton <msingleton@aclu.org> | 2020-09-15 09:30:15 -0500 |
commit | a1fe34a72ab391fc11a33ffcfb6637ca56b078a2 (patch) | |
tree | 6694c6bc730fd08b8411c9c0b129d8b33ca0171c /zsh | |
parent | f417da0222e4a2a1f6b2a7cdc67d95dac95d9136 (diff) |
fix bug in hr function
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/behavior.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/behavior.zsh b/zsh/behavior.zsh index 0c0f2f4..f2be1f5 100644 --- a/zsh/behavior.zsh +++ b/zsh/behavior.zsh @@ -56,7 +56,7 @@ function hr { printf "$bg[green]${(l:$COLUMNS:: :)}\n" printf "$bg[cyan]${(l:$COLUMNS:: :)}\n" printf "$bg[blue]${(l:$COLUMNS:: :)}\n" - printf "$bg[magenta]${(l:$COLUMNS:: :)}\n" + printf "$bg[magenta]${(l:$COLUMNS:: :)}$reset_color\n" } # |