annotate runtime/indoff.vim @ 32180:79ab211a3676
v9.0.1421
patch 9.0.1421: Nu files are not recognized
Commit: https://github.com/vim/vim/commit/8aa2a37f8983a7863afa32d9ffbe64b2f2bc70be
Author: Amaan Qureshi <amaanq12@gmail.com>
Date: Tue Mar 21 21:28:06 2023 +0000
patch 9.0.1421: Nu files are not recognized
Problem: Nu files are not recognized.
Solution: Add a pattern for Nu files. (Amaan Qureshi, closes https://github.com/vim/vim/issues/12172)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 21 Mar 2023 22:30:04 +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 *
|