about summary refs log tree commit diff
path: root/mless
blob: a6f6079dfc4a24f84fb40fd05935f6c26a396e01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
# mless RANGES... - less(1)-wrapper around mshow

PATH="${0%/*}:$PATH"

if [ "$1" = --filter ]; then
	mshow "$2" | awk '
function fg(c, s) { return sprintf("\033[38;5;%03dm%s\033[0m", c, s) }
function so(s) { return sprintf("\033[1m%s\033[0m", s) }
BEGIN { hdr = 1 }
/^$/ { hdr = 0 }
hdr && /^From:/ { print so(fg(119, $0)); next }
hdr { print fg(120, $0); next }
/^--- .* ---/ { print fg(242, $0); next }
/^>/ { print fg(151, $0); next }
{ print }'
	exit $?
fi

if [ "$#" -eq 0 ] && ! [ -t 0 ]; then
	msetseq >/dev/null
	set -- :
fi

if ! [ -t 1 ]; then
	exec mseq "$@"
fi

case "$0" in
	*next*) d=1;;
	*prev*) d=-1;;
	*) d=0;;
esac
curcmd=$(mseq -n "$@" |
	awk -v cur=$(mseq -n .) -v d=$d '$1 == cur {print "+" FNR+d ":x"; quit}')

LESSOPEN="|$0 --filter %s" exec less -R $curcmd $(mseq -n "$@")