view runtime/ftplugof.vim @ 22206:5251a6592aaa v8.2.1652

patch 8.2.1652: cannot translate lines in the options window Commit: https://github.com/vim/vim/commit/a953b5cf4f291875b805262eebd361e502de8c92 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 10 14:25:25 2020 +0200 patch 8.2.1652: cannot translate lines in the options window Problem: Cannot translate lines in the options window. Solution: Use the AddOption() function to split descriptions where indicated by a line break. (issue #6800)
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Sep 2020 14:30:03 +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