annotate runtime/macros/less.bat @ 9380:a419e980f5b7
Added tag v7.4.1971 for changeset b398e4e127516a6949afa39751c4749c878c99df
author |
Christian Brabandt <cb@256bit.org> |
date |
Fri, 01 Jul 2016 15:00:06 +0200 |
parents |
1b584a6f446c |
children |
|
rev |
line source |
3513
|
1 @echo off
|
|
2 rem batch file to start Vim with less.vim.
|
|
3 rem Read stdin if no arguments were given.
|
|
4 rem Written by Ken Takata.
|
|
5
|
|
6 if "%1"=="" (
|
|
7 vim --cmd "let no_plugin_maps = 1" -c "runtime! macros/less.vim" -
|
|
8 ) else (
|
|
9 vim --cmd "let no_plugin_maps = 1" -c "runtime! macros/less.vim" %*
|
|
10 )
|