annotate runtime/macros/less.bat @ 5498:79a8bac614c0
v7.4.098
updated for version 7.4.098
Problem: When using ":'<,'>del" errors may be given for the visual line
numbers being out of range.
Solution: Reset Visual mode in ":del". (Lech Lorens)
author |
Bram Moolenaar <bram@vim.org> |
date |
Thu, 21 Nov 2013 14:21:40 +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 )
|