vim72-20100325-kaoriya-w64j.zip
[MacVim/KaoriYa.git] / runtime / macros / less.sh
blob484c714ce69121126ff40e5f6fabff9360209ab0
1 #!/bin/sh
2 # Shell script to start Vim with less.vim.
3 # Read stdin if no arguments were given.
5 if test -t 1; then
6 if test $# = 0; then
7 vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' -
8 else
9 vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' "$@"
11 else
12 # Output is not a terminal, cat arguments or stdin
13 if test $# = 0; then
14 cat
15 else
16 cat "$@"