annotate runtime/indoff.vim @ 27215:5b54f413d132
v8.2.4136
patch 8.2.4136: Vim9: the "autoload" argument of ":vim9script" is not useful
Commit: https://github.com/vim/vim/commit/fd218c8a36e7ed33f7a205163690c5b7d2f31f8a
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 18 16:26:24 2022 +0000
patch 8.2.4136: Vim9: the "autoload" argument of ":vim9script" is not useful
Problem: Vim9: the "autoload" argument of ":vim9script" is not useful.
Solution: Remove the argument. (closes https://github.com/vim/vim/issues/9555)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 18 Jan 2022 17:30:05 +0100 |
parents |
3fc0f57ecb91 |
children |
4027cefc2aab |
rev |
line source |
7
|
1 " Vim support file to switch off loading indent files for file types
|
|
2 "
|
|
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
4 " Last Change: 2001 Jun 11
|
|
5
|
|
6 if exists("did_indent_on")
|
|
7 unlet did_indent_on
|
|
8 endif
|
|
9
|
|
10 " Remove all autocommands in the filetypeindent group
|
|
11 silent! au! filetypeindent *
|