blob: 256936b5e3ca0bf0f729d1b1ed34a769bf94e36f [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001#!/bin/sh
2# Shell script to start Vim with less.vim.
3# Read stdin if no arguments were given.
4
5if test $# = 0; then
6 vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' -
7else
8 vim --cmd 'let no_plugin_maps = 1' -c 'runtime! macros/less.vim' "$@"
9fi