annotate runtime/macros/less.bat @ 19459:423b27246383
v8.2.0287
patch 8.2.0287: Vim9: return in try block not tested; catch not tested
Commit: https://github.com/vim/vim/commit/f575adff06d4bc5f670939567ce86974683deb7a
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 20 20:41:06 2020 +0100
patch 8.2.0287: Vim9: return in try block not tested; catch not tested
Problem: Vim9: return in try block not tested; catch with pattern not
tested.
Solution: Add tests. Make it work.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 20 Feb 2020 20:45:03 +0100 |
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 )
|