Mercurial > vim
annotate runtime/ftplugin/expect.vim @ 30829:d7066cbac096 v9.0.0749
patch 9.0.0749: alloc/free of buffer for each quickfix entry is inefficient
Commit: https://github.com/vim/vim/commit/975a665d4811649a51e2c6a97a6ce096290d87ae
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Fri Oct 14 13:11:13 2022 +0100
patch 9.0.0749: alloc/free of buffer for each quickfix entry is inefficient
Problem: Alloc/free of buffer for each quickfix entry is inefficient.
Solution: Use a shared grow array. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/11365)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 14 Oct 2022 14:15:03 +0200 |
parents | 67f31c24291b |
children | 8ae680be2a51 |
rev | line source |
---|---|
29450 | 1 " Vim filetype plugin file |
2 " Language: Expect | |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Last Change: 2022 Jul 16 | |
5 | |
6 if exists("b:did_ftplugin") | |
7 finish | |
8 endif | |
9 | |
10 " Syntax is similar to Tcl | |
11 runtime! ftplugin/tcl.vim | |
12 | |
13 let s:cpo_save = &cpo | |
14 set cpo&vim | |
15 | |
16 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") | |
17 let b:browsefilter = "Expect Command Files (*.exp)\t*.exp\n" .. | |
18 \ "All Files (*.*)\t*.*\n" | |
19 endif | |
20 | |
21 let &cpo = s:cpo_save | |
22 unlet s:cpo_save | |
23 | |
24 " vim: nowrap sw=2 sts=2 ts=8 |