bat-extras/src/batman.sh

71 lines
2.3 KiB
Bash
Raw Normal View History

2019-09-08 00:19:12 +02:00
#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# bat-extras | Copyright (C) 2019 eth-p | MIT License
#
# Repository: https://github.com/eth-p/bat-extras
# Issues: https://github.com/eth-p/bat-extras/issues
# -----------------------------------------------------------------------------
2020-04-01 21:49:55 +02:00
# shellcheck disable=SC1090 disable=SC2155
LIB="$(cd "$(dirname "${BASH_SOURCE[0]}")" && cd "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo ".")")/../lib" && pwd)"
if [[ -n "${MANPAGER}" ]]; then BAT_PAGER="$MANPAGER"; fi
source "${LIB}/constants.sh"
source "${LIB}/pager.sh"
2019-09-08 00:19:12 +02:00
source "${LIB}/print.sh"
source "${LIB}/opt.sh"
source "${LIB}/opt_hook_color.sh"
source "${LIB}/opt_hook_version.sh"
2019-09-08 00:19:12 +02:00
# -----------------------------------------------------------------------------
2019-10-23 00:35:10 +02:00
hook_color
hook_version
2019-10-23 00:35:10 +02:00
# -----------------------------------------------------------------------------
MAN_ARGS=()
BAT_ARGS=()
2019-09-08 00:19:12 +02:00
while shiftopt; do
case "$OPT" in
--paging|--pager) shiftval; BAT_ARGS+=("${OPT}=${OPT_VAL}") ;;
*) MAN_ARGS+=("$OPT") ;;
esac
done
2019-10-23 00:35:10 +02:00
if "$OPT_COLOR"; then
BAT_ARGS+=("--color=always" "--decorations=always")
2019-10-23 00:35:10 +02:00
else
BAT_ARGS+=("--color=never" "--decorations=never")
2019-10-23 00:35:10 +02:00
fi
if [[ -z "${BAT_STYLE+x}" ]]; then
export BAT_STYLE="grid"
fi
2019-10-23 00:35:10 +02:00
# -----------------------------------------------------------------------------
export MANPAGER='sh -c "col -bx | '"$(printf "%q" "$EXECUTABLE_BAT")"' --language=man '$(printf "%q " "${BAT_ARGS[@]}")'"'
2019-09-08 00:19:12 +02:00
export MANROFFOPT='-c'
# If no argument is provided and fzf is installed, use fzf to search for man pages.
if [[ "${#MAN_ARGS[@]}" -eq 0 ]] && [[ -z "$BATMAN_LEVEL" ]] && command -v "$EXECUTABLE_FZF" &>/dev/null; then
export BATMAN_LEVEL=1
selected_page="$(man -k . | "$EXECUTABLE_FZF" --delimiter=" - " --reverse -e --preview="
echo {1} \
| sed 's/, /\n/g;' \
| sed 's/\([^(]*\)(\([0-9A-Za-z]\))/\2\t\1/g' \
| BAT_STYLE=plain xargs -n2 batman --color=always --paging=never
")"
if [[ -z "$selected_page" ]]; then
exit 0
fi
# Convert the page(section) format to something that can be fed to the man command.
while read -r line; do
if [[ "$line" =~ ^(.*)\(([0-9a-zA-Z]+)\) ]]; then
MAN_ARGS+=("${BASH_REMATCH[2]}" "$(echo ${BASH_REMATCH[1]} | xargs)")
fi
done <<< "$selected_page"
fi
# Run man.
2019-10-23 00:35:10 +02:00
command man "${MAN_ARGS[@]}"
2019-09-08 00:19:12 +02:00
exit $?