annotate runtime/indoff.vim @ 30327:7fde373affbf
v9.0.0499
patch 9.0.0499: in :def function list created after const is locked
Commit: https://github.com/vim/vim/commit/566badc76ba7c0fbdc75e62f79486182304fc7cc
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Sep 18 13:46:08 2022 +0100
patch 9.0.0499: in :def function list created after const is locked
Problem: In :def function list created after const is locked.
Solution: Reset v_lock. (closes https://github.com/vim/vim/issues/11154)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 18 Sep 2022 15:00:02 +0200 |
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 *
|