view runtime/ftplugof.vim @ 22180:786ca9e1dc9a v8.2.1639

patch 8.2.1639: options window cannot be translated Commit: https://github.com/vim/vim/commit/64075b0ab18449132ed01a07874fe1d1f3f356d4 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 9 12:56:30 2020 +0200 patch 8.2.1639: options window cannot be translated Problem: Options window cannot be translated. Solution: Get the translation for "local to" texts once and use them in many places. Fix that 'whichwrap' is not a local option. (issue #6800)
author Bram Moolenaar <Bram@vim.org>
date Wed, 09 Sep 2020 13:00: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