view runtime/ftplugof.vim @ 22572:0fd4d7548b07 v8.2.1834

patch 8.2.1834: PyEval_InitThreads() is deprecated in Python 3.9 Commit: https://github.com/vim/vim/commit/efc0d94afc48a03b07955e91315e7e67945cd079 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 11 18:05:02 2020 +0200 patch 8.2.1834: PyEval_InitThreads() is deprecated in Python 3.9 Problem: PyEval_InitThreads() is deprecated in Python 3.9. Solution: Do not call PyEval_InitThreads in Python 3.9 and later. (Ken Takata, closes #7113) Avoid warnings for functions.
author Bram Moolenaar <Bram@vim.org>
date Sun, 11 Oct 2020 18:15:04 +0200
parents 49b08c9b9f5b
children 179c118424a6
line wrap: on
line source

" Vim support file to switch off loading plugins for file types
"
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2011 Oct 20

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