xref: /vim-8.2.3635/runtime/macros/less.bat (revision 1aeaf8c0)
1@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)
11