changeset 30537:720ac162fbd6 v9.0.0604

patch 9.0.0604: luacheckrc file is not recognized Commit: https://github.com/vim/vim/commit/49c311c9b18e18c05f93728d1f8a552923a18423 Author: ObserverOfTime <chronobserver@disroot.org> Date: Tue Sep 27 13:07:05 2022 +0100 patch 9.0.0604: luacheckrc file is not recognized Problem: Luacheckrc file is not recognized. Solution: Use lua filetype for luacheckrc. (closes https://github.com/vim/vim/issues/11236)
author Bram Moolenaar <Bram@vim.org>
date Tue, 27 Sep 2022 14:15:03 +0200
parents e52d1209a9ee
children cf81bdd54b55
files runtime/filetype.vim src/testdir/test_filetype.vim src/version.c
diffstat 3 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1112,6 +1112,9 @@ au BufNewFile,BufRead *.lou,*.lout		setf
 " Lua
 au BufNewFile,BufRead *.lua			setf lua
 
+" Luacheck
+au BufNewFile,BufRead .luacheckrc		setf lua
+
 " Luarocks
 au BufNewFile,BufRead *.rockspec		setf lua
 
--- a/src/testdir/test_filetype.vim
+++ b/src/testdir/test_filetype.vim
@@ -328,7 +328,7 @@ let s:filename_checks = {
     \ 'lpc': ['file.lpc', 'file.ulpc'],
     \ 'lsl': ['file.lsl'],
     \ 'lss': ['file.lss'],
-    \ 'lua': ['file.lua', 'file.rockspec', 'file.nse'],
+    \ 'lua': ['file.lua', 'file.rockspec', 'file.nse', '.luacheckrc'],
     \ 'lynx': ['lynx.cfg'],
     \ 'lyrics': ['file.lrc'],
     \ 'm3build': ['m3makefile', 'm3overrides'],
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    604,
+/**/
     603,
 /**/
     602,