Mercurial > vim
view runtime/macros/less.bat @ 20164:2dd1ac2c48f4 v8.2.0637
patch 8.2.0637: incsearch highlighting does not work for ":sort!"
Commit: https://github.com/vim/vim/commit/333015a46e916f566763ec44ae8669c0378767d9
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Apr 25 15:54:16 2020 +0200
patch 8.2.0637: incsearch highlighting does not work for ":sort!"
Problem: Incsearch highlighting does not work for ":sort!".
Solution: Skip over the exclamation point. (closes https://github.com/vim/vim/issues/5983)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 25 Apr 2020 16: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" %* )