No CF calls between fork() and exec()
[MacVim.git] / runtime / macros / less.sh
blob256936b5e3ca0bf0f729d1b1ed34a769bf94e36f
1 #!/bin/sh
2 # Shell script to start Vim with less.vim.
3 # Read stdin if no arguments were given.
5 if test $# = 0; then
6 vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' -
7 else
8 vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' "$@"
9 fi