# HG changeset patch # User Christian Brabandt # Date 1702313105 -3600 # Node ID bc834a974df8e63afd7d6af6d231f334edaf6fc2 # Parent 54d29fec32e12b8d0339378069aae0a97f6f72e7 runtime(filetype): ft detection maybe wrong if 'fic' set for *.[CH] Commit: https://github.com/vim/vim/commit/fa920da283f6651083b40d0aa28a9eacd5116593 Author: shane.xb.qian Date: Mon Dec 11 17:33:03 2023 +0100 runtime(filetype): ft detection maybe wrong if 'fic' set for *.[CH] So only set the filetype to cpp for *.C and *.H files, if 'fileignorecase' option is not set. Signed-off-by: shane.xb.qian Signed-off-by: Christian Brabandt diff --git a/runtime/filetype.vim b/runtime/filetype.vim --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1,7 +1,7 @@ " Vim support file to detect file types " " Maintainer: The Vim Project -" Last Change: 2023 Aug 10 +" Last Change: 2023 Dec 06 " Former Maintainer: Bram Moolenaar " Listen very carefully, I will say this only once @@ -348,7 +348,7 @@ au BufNewFile,BufRead *.cypher setf cy " C++ au BufNewFile,BufRead *.cxx,*.c++,*.hh,*.hxx,*.hpp,*.ipp,*.moc,*.tcc,*.inl setf cpp if has("fname_case") - au BufNewFile,BufRead *.C,*.H setf cpp + au BufNewFile,BufRead *.C,*.H if !&fileignorecase | setf cpp | endif endif " C++ 20 modules (clang)