blob: 256936b5e3ca0bf0f729d1b1ed34a769bf94e36f [file] [log] [blame]
#!/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