annotate runtime/ftplugof.vim @ 14976:676db1b7fc35
v8.1.0499
patch 8.1.0499: :2vimgrep causes an ml_get error
commit https://github.com/vim/vim/commit/1c29943416207e21abbc790eaf563b36789170c2
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 28 14:36:09 2018 +0100
patch 8.1.0499: :2vimgrep causes an ml_get error
Problem: :2vimgrep causes an ml_get error
Solution: Pass tomatch pointer instead of value. (Yegappan Lakshmanan)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 28 Oct 2018 14:45:05 +0100 |
parents |
49b08c9b9f5b |
children |
179c118424a6 |
rev |
line source |
7
|
1 " Vim support file to switch off loading plugins for file types
|
|
2 "
|
|
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
|
3139
|
4 " Last Change: 2011 Oct 20
|
7
|
5
|
|
6 if exists("did_load_ftplugin")
|
|
7 unlet did_load_ftplugin
|
|
8 endif
|
|
9
|
3139
|
10 " Remove all autocommands in the filetypeplugin group, if any exist.
|
|
11 if exists("#filetypeplugin")
|
|
12 silent! au! filetypeplugin *
|
|
13 endif
|