summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorshane.xb.qian <shane.qian@foxmail.com>2023-12-11 17:33:03 +0100
committerChristian Brabandt <cb@256bit.org>2023-12-11 17:34:36 +0100
commitfa920da283f6651083b40d0aa28a9eacd5116593 (patch)
tree60399e93c908de23fcae0a34c259d0930b6114e5
parent1ec115c92c16f1557719d9da0a09e88989f511f3 (diff)
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 <shane.qian@foxmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--runtime/filetype.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index e7343bd6ff..4043eb428e 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1,7 +1,7 @@
" Vim support file to detect file types
"
" Maintainer: The Vim Project <https://github.com/vim/vim>
-" Last Change: 2023 Aug 10
+" Last Change: 2023 Dec 06
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Listen very carefully, I will say this only once
@@ -348,7 +348,7 @@ au BufNewFile,BufRead *.cypher setf cypher
" 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)