summaryrefslogtreecommitdiff
path: root/uvim/runtime/macros/less.bat
blob: 8bf1016de89e77d7091be1b76216890cb46719e8 (plain)
1
2
3
4
5
6
7
8
9
10
@echo off
rem batch file to start MNV with less.mnv.
rem Read stdin if no arguments were given.
rem Written by Ken Takata.

if "%1"=="" (
  mnv --cmd "let no_plugin_maps = 1" -c "runtime! macros/less.mnv" -
) else (
  mnv --cmd "let no_plugin_maps = 1" -c "runtime! macros/less.mnv" %*
)