annotate runtime/ftplugof.vim @ 10444:2edda415c28a
v8.0.0116
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 1 21:32:32 2016 +0100
patch 8.0.0116
Problem: When reading English help and using CTRl-] the language from
'helplang' is used.
Solution: Make help tag jumps keep the language. (Tatsuki, test by Hirohito
Higashi, closes #1249)
author |
Christian Brabandt <cb@256bit.org> |
date |
Thu, 01 Dec 2016 21:45:04 +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
|