summaryrefslogtreecommitdiffstats
path: root/vimpager
blob: edaa5dbfe69a4416175899744e24bbdda70489d9 (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/sh

# Script for using ViM as a PAGER.
# Based on Bram's less.sh.
# Version 1.1

file="$@"
if [ -z "$file" ]; then file="-"; fi

if uname -s | grep -iq cygwin; then
    cygwin=1
elif uname -s | grep -iq Linux; then
    linux=1
else
    bsd=1
fi

less_vim() {
    vim -R \
    -c 'let no_plugin_maps = 1' \
    -c 'set scrolloff=999' \
    -c 'runtime! macros/less.vim' \
    -c 'set foldlevel=999' \
    -c 'set mouse=a' \
    "$@"
}

do_ps() {
    if [ $bsd ]; then
        ps -u `id -u` -o pid,comm=
    else
        ps fuxw
    fi
}

pproc() {
    if [ $linux ]; then
        ps -p $1 -o comm=
    elif [ $cygwin ]; then
        ps -p $1 | sed -e 's/^I/ /' | grep -v PID
    else
        ps -p $1 -o comm= | grep -v PID
    fi
}

ppid() {
    if [ $linux ]; then
        ps -p $1 -o ppid=
    elif [ $cygwin ]; then
        ps -p $1 | sed -e 's/^I/ /' | grep -v PID | awk '{print $2}'
    else
        ps -p $1 -o ppid= | grep -v PID
    fi
}

# Check if called from man, perldoc or pydoc
if do_ps | grep -q '\(py\(thon\|doc\)\|man\|perl\(doc\)\?\([0-9.]*\)\?\)\>'; then
    proc=$$
    while next_parent=`ppid $proc` && [ $next_parent != 1 ]; do
        if pproc $next_parent | grep -q 'man\>'; then
            cat $file | sed -e 's/\[[^m]*m//g; s/.//g' | less_vim -c 'set ft=man' -; exit
        elif pproc $next_parent | grep -q 'py\(thon\|doc\)\>'; then
            cat $file | sed -e 's/\[[^m]*m//g; s/.//g' | less_vim -c 'set ft=man' -; exit
        elif pproc $next_parent | grep -q 'perl\(doc\)\?\([0-9.]*\)\?\>'; then
            cat $file | sed -e 's/.//g' | less_vim -c 'set ft=man' -; exit
        fi
        proc=$next_parent
    done
fi

cat $file | sed -e 's/\[[^m]*m//g; s/.//g' | less_vim -; exit
#less_vim "$file"

# CONTRIBUTORS:
#
# Rafael Kitover
# Antonio Ospite
# Jean-Marie Gaillourdet
# Perry Hargrave