mirror of
https://github.com/eth-p/bat-extras.git
synced 2024-11-07 16:24:06 +01:00
Fix incorrect width being passed to 'bat' in batgrep with pager
This commit is contained in:
parent
72b09b4416
commit
ab38bb254c
@ -117,7 +117,8 @@ if [[ -z "$PATTERN" ]]; then
|
||||
fi
|
||||
|
||||
# Generate separator.
|
||||
SEP="$(printc "%{DIM}%$(tput cols)s%{CLEAR}" | sed "s/ /─/g")"
|
||||
COLS="$(tput cols)"
|
||||
SEP="$(printc "%{DIM}%${COLS}s%{CLEAR}" | sed "s/ /─/g")"
|
||||
|
||||
# Append ripgrep and bat arguments.
|
||||
if [[ -n "$OPT_CASE_SENSITIVITY" ]]; then
|
||||
@ -189,6 +190,7 @@ main() {
|
||||
"${LAST_LH[@]}" \
|
||||
--style="${BAT_STYLE}${OPT_SNIP}" \
|
||||
--paging=never \
|
||||
--terminal-width="$COLS" \
|
||||
"$LAST_FILE"
|
||||
|
||||
# Print the separator.
|
||||
|
Loading…
Reference in New Issue
Block a user