-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathman
executable file
·22 lines (16 loc) · 827 Bytes
/
man
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash
set -o nounset -o pipefail
if [[ ! -f /tmp/man$1.txt ]]; then
man -kS "$1" . | awk '{ print $1, $2 }' > "/tmp/man$1.txt"
fi
export FZF_DEFAULT_OPTS="--prompt '? ' --color dark,hl:yellow:regular,fg+:white:regular
--color hl+:yellow:regular:reverse,query:white:regular,info:gray:regular
--color prompt:yellow:regular,pointer:yellow:bold ${FZF_DEFAULT_OPTS:-}"
# shellcheck disable=SC2016
mapfile -t selection < <(xterm -name 'floating xterm' -geometry 36x24 -e '
fzf < /proc/$PPID/fd/0 > /proc/$PPID/fd/1' < "/tmp/man$1.txt" |
sed -r 's/(.*) \((.*)\)/\2\n\1/')
[[ ${selection[0]} && ${selection[1]} ]] || exit
LC_CTYPE=en_US exec xterm -sl 0 -name 'floating man' \
-title "${selection[1]}(${selection[0]}) manual page" \
-geometry 88x68 -e man -E latin1 --nj --nh "${selection[@]}"