annotate runtime/ftplugof.vim @ 11201:87ef152072d4
v8.0.0487
patch 8.0.0487: the autocmd test hangs on MS-Windows
commit https://github.com/vim/vim/commit/651e4056aceaa580df9e2fff575a6402d5c6f0dc
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Mar 19 18:34:46 2017 +0100
patch 8.0.0487: the autocmd test hangs on MS-Windows
Problem: The autocmd test hangs on MS-Windows.
Solution: Skip the hanging tests for now.
author |
Christian Brabandt <cb@256bit.org> |
date |
Sun, 19 Mar 2017 18:45:03 +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
|