blob: bbe619bc92d6581a79ecd5b3135c457f4fe8d2e7 [file] [log] [blame]
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +02001@echo off
2rem batch file to start Vim with less.vim.
3rem Read stdin if no arguments were given.
4rem Written by Ken Takata.
5
6if "%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)