annotate runtime/ftplugof.vim @ 35080:fcc356d45610 default tip

Added tag v9.1.0381 for changeset 40c314f639cf1a3d7988a689edb1f3152dc55ff4
author Christian Brabandt <cb@256bit.org>
date Mon, 29 Apr 2024 20:45:04 +0200
parents 4027cefc2aab
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27623
179c118424a6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 3139
diff changeset
1 vim9script
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2
27623
179c118424a6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 3139
diff changeset
3 # Vim support file to switch off loading plugins for file types
179c118424a6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 3139
diff changeset
4 #
32770
4027cefc2aab Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents: 27623
diff changeset
5 # Maintainer: The Vim Project <https://github.com/vim/vim>
4027cefc2aab Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents: 27623
diff changeset
6 # Last Change: 2023 Aug 10
4027cefc2aab Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents: 27623
diff changeset
7 # Former Maintainer: Bram Moolenaar <Bram@vim.org>
27623
179c118424a6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 3139
diff changeset
8
179c118424a6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 3139
diff changeset
9 if exists("g:did_load_ftplugin")
179c118424a6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 3139
diff changeset
10 unlet g:did_load_ftplugin
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12
27623
179c118424a6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 3139
diff changeset
13 # Remove all autocommands in the filetypeplugin group, if any exist.
3139
49b08c9b9f5b updated for version 7.3.340
Bram Moolenaar <bram@vim.org>
parents: 7
diff changeset
14 if exists("#filetypeplugin")
49b08c9b9f5b updated for version 7.3.340
Bram Moolenaar <bram@vim.org>
parents: 7
diff changeset
15 silent! au! filetypeplugin *
49b08c9b9f5b updated for version 7.3.340
Bram Moolenaar <bram@vim.org>
parents: 7
diff changeset
16 endif