summaryrefslogtreecommitdiffstats
path: root/runtime/macros/less.sh
blob: 256936b5e3ca0bf0f729d1b1ed34a769bf94e36f (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Shell script to start Vim with less.vim.
# Read stdin if no arguments were given.

if test $# = 0; then
  vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' -
else
  vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' "$@"
fi