aboutsummaryrefslogtreecommitdiffstats
path: root/_zsh/40-functions.zsh
diff options
context:
space:
mode:
Diffstat (limited to '_zsh/40-functions.zsh')
-rw-r--r--_zsh/40-functions.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/_zsh/40-functions.zsh b/_zsh/40-functions.zsh
index 2a15058..99f17de 100644
--- a/_zsh/40-functions.zsh
+++ b/_zsh/40-functions.zsh
@@ -94,7 +94,7 @@ function trash() {
## Print a horizontal rule
function rule() {
- printf "%$(tput cols)s\n" | tr ' ' '-'
+ printf "%$(tput cols)s\n" | tr ' ' "${1:-=}"
}