annotate runtime/ftplugin/diff.vim @ 15904:fec4416adb80
v8.1.0958
patch 8.1.0958: compiling weird regexp pattern is very slow
commit https://github.com/vim/vim/commit/38f08e76acf7d21bb34cf8f79f0f82eb63cdc987
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Feb 20 22:04:32 2019 +0100
patch 8.1.0958: compiling weird regexp pattern is very slow
Problem: Compiling weird regexp pattern is very slow.
Solution: When reallocating post list increase size by 50%. (Kuang-che Wu,
closes #4012) Make assert_inrange() accept float values.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Wed, 20 Feb 2019 22:15:05 +0100 |
parents |
7472c565592a |
children |
3a1ed539ae2a |
rev |
line source |
446
|
1 " Vim filetype plugin file
|
|
2 " Language: Diff
|
|
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
4 " Last Change: 2005 Jul 27
|
|
5
|
|
6 " Only do this when not done yet for this buffer
|
|
7 if exists("b:did_ftplugin")
|
|
8 finish
|
|
9 endif
|
|
10 let b:did_ftplugin = 1
|
|
11
|
|
12 let b:undo_ftplugin = "setl modeline<"
|
|
13
|
|
14 " Don't use modelines in a diff, they apply to the diffed file
|
|
15 setlocal nomodeline
|