summaryrefslogtreecommitdiffstats
path: root/.zsh/functions/line
blob: 58f7aedc8e58e035145dbe1b33761c457fa396d5 (plain)
1
2
3
4
5
6
7
8
# -*- mode: shell-script; eval: (git-auto-commit-mode 1) -*-

let start=$(expr $1 + 1)
let width=$(expr $COLUMNS - $2)

for i in {$start..$width}; do
    echo -n \\x2d
done