blob: 5de30921b7bad3dd2409aca623c66673d9ca1829 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
mnv9script
# MNV support file to switch off loading plugins for file types
#
# Maintainer: The MNV Project <https://github.com/Project-Tick/Project-Tick>
# Last Change: 2023 Aug 10
# Former Maintainer: Bram Moolenaar <Bram@mnv.org>
if exists("g:did_load_ftplugin")
unlet g:did_load_ftplugin
endif
# Remove all autocommands in the filetypeplugin group, if any exist.
if exists("#filetypeplugin")
silent! au! filetypeplugin *
endif
|