Mercurial > vim
view runtime/macros/less.sh @ 1511:9c970d8681f4 v7.1.226
updated for version 7.1-226
author | vimboss |
---|---|
date | Sun, 13 Jan 2008 16:12:10 +0000 |
parents | 3fc0f57ecb91 |
children | b9740fb41986 |
line wrap: on
line source
#!/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