view runtime/ftplugof.vim @ 16393:c1c25e2523a6 v8.1.1201

patch 8.1.1201: output of :command is hard to read commit https://github.com/vim/vim/commit/725310d89e1ba268bf410472b7de054c6c260161 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Apr 24 23:08:23 2019 +0200 patch 8.1.1201: output of :command is hard to read Problem: Output of :command is hard to read. Solution: Make some columns wider, some narrower. Truncate the command when listing all.
author Bram Moolenaar <Bram@vim.org>
date Wed, 24 Apr 2019 23:15:05 +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