view runtime/macros/less.bat @ 21224:7509aea3a671 v8.2.1163

patch 8.2.1163: build error Commit: https://github.com/vim/vim/commit/6e13530ca03dd9cad245221177dd65f712211448 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 8 22:36:17 2020 +0200 patch 8.2.1163: build error Problem: Build error. Solution: Add missing change to globals.
author Bram Moolenaar <Bram@vim.org>
date Wed, 08 Jul 2020 22:45:03 +0200
parents 1b584a6f446c
children
line wrap: on
line source

@echo off
rem batch file to start Vim with less.vim.
rem Read stdin if no arguments were given.
rem Written by Ken Takata.

if "%1"=="" (
  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" %*
)