Mercurial > vim
view runtime/macros/less.bat @ 11405:b164223c0119 v8.0.0587
patch 8.0.0587: configure check for return value of tgetent skipped
commit https://github.com/vim/vim/commit/696cbd224b4f78b99b8fc34538867303a8a922fc
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Apr 28 15:45:46 2017 +0200
patch 8.0.0587: configure check for return value of tgetent skipped
Problem: Configure check for return value of tgetent is skipped.
Solution: Always perform the check. (Marvin Schmidt, closes https://github.com/vim/vim/issues/1664)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 28 Apr 2017 16:00:06 +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" %* )