Mercurial > vim
view 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 |
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" %* )