From 7474874baa3ea960fab38b66db36870b797afd5b Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Wed, 11 Oct 2023 22:01:32 +0200 Subject: vim-patch:9.0.2011: INI files not detected Problem: INI files not detected Solution: detect uppercase .INI as dosini files It previo~1 only worked for lower-case .ini files, but upperc~1 .INI is also somewhat common on account of DOS' old 8.3 upperc~2 only filena~1. closes: vim/vim#13316 https://github.com/vim/vim/commit/4a82bdfaa8022402b1ca0f0000c94c47a13f1014 Co-authored-by: Martin Tournoij --- runtime/lua/vim/filetype.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/lua/vim') diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index c412364461..b2fbea5405 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -352,6 +352,7 @@ local extension = { bat = 'dosbatch', wrap = 'dosini', ini = 'dosini', + INI = 'dosini', vbp = 'dosini', dot = 'dot', gv = 'dot', -- cgit