annotate runtime/ftoff.vim @ 22250:dd42235ed626
v8.2.1674
patch 8.2.1674: Vim9: internal error when using variable that was not set
Commit: https://github.com/vim/vim/commit/f0afd9e18227d3459c888584d0658a1837d2aaf8
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Sep 13 18:57:47 2020 +0200
patch 8.2.1674: Vim9: internal error when using variable that was not set
Problem: Vim9: internal error when using variable that was not set.
Solution: Give a meaningful error. (closes https://github.com/vim/vim/issues/6937)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 13 Sep 2020 19:00:08 +0200 |
parents |
3fc0f57ecb91 |
children |
4027cefc2aab |
rev |
line source |
7
|
1 " Vim support file to switch off detection of file types
|
|
2 "
|
|
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
4 " Last change: 2001 Jun 11
|
|
5
|
|
6 if exists("did_load_filetypes")
|
|
7 unlet did_load_filetypes
|
|
8 endif
|
|
9
|
|
10 " Remove all autocommands in the filetypedetect group
|
|
11 silent! au! filetypedetect *
|