annotate runtime/macros/less.bat @ 21867:76627c726349
v8.2.1483
patch 8.2.1483: Vim9: error for using special as number
Commit: https://github.com/vim/vim/commit/165036ddba1318576a29f75d82fae8c326a48f18
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Aug 18 22:50:38 2020 +0200
patch 8.2.1483: Vim9: error for using special as number
Problem: Vim9: error for using special as number when returning "false"
from a popup filter.
Solution: Use tv_get_bool(). (closes #6733)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 18 Aug 2020 23:00:04 +0200 |
parents |
1b584a6f446c |
children |
|
rev |
line source |
3513
|
1 @echo off
|
|
2 rem batch file to start Vim with less.vim.
|
|
3 rem Read stdin if no arguments were given.
|
|
4 rem Written by Ken Takata.
|
|
5
|
|
6 if "%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 )
|