Files
neovim/runtime/ftplugof.vim
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
403 B
VimL
Raw Permalink Normal View History

2014-07-11 04:05:51 +00:00
" Vim support file to switch off loading plugins for file types
"
2023-08-13 13:25:10 +01:00
" Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
2014-07-11 04:05:51 +00:00
if exists("did_load_ftplugin")
unlet did_load_ftplugin
endif
" Remove all autocommands in the filetypeplugin group, if any exist.
if exists("#filetypeplugin")
silent! au! filetypeplugin *
endif