aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Singleton <msingleton@aclu.org>2020-09-15 09:30:15 -0500
committerMatt Singleton <msingleton@aclu.org>2020-09-15 09:30:15 -0500
commita1fe34a72ab391fc11a33ffcfb6637ca56b078a2 (patch)
tree6694c6bc730fd08b8411c9c0b129d8b33ca0171c
parentf417da0222e4a2a1f6b2a7cdc67d95dac95d9136 (diff)
fix bug in hr function
-rw-r--r--zsh/behavior.zsh2
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"
}
#