Bruno BELANYI
5dfbb3fb90
I don't want my pager to clobber my terminal once I'm done looking at whatever I was looking at. This also means that I can remove its definition from the `batman` script.
8 lines
138 B
Bash
Executable file
8 lines
138 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
export MANPAGER='sh -c "col -bx | bat --language man --style grid"'
|
|
export MANROFFOPT='-c'
|
|
|
|
command man "$@"
|
|
exit $?
|