]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(hamster): do not globally set ignorecase
authorChristian Brabandt <cb@256bit.org>
Fri, 5 Sep 2025 18:57:34 +0000 (20:57 +0200)
committerChristian Brabandt <cb@256bit.org>
Fri, 5 Sep 2025 18:57:34 +0000 (20:57 +0200)
related: #15772

Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/ftplugin/hamster.vim

index 904f267fdc69d2f5c453c691373366f710e320c9..a204cbb7451329763110eb6c28bb84d56a4dddda 100644 (file)
@@ -4,6 +4,7 @@
 " Maintainer:  David Fishburn <dfishburn dot vim at gmail dot com>
 " Last Change: 2021 Jan 19
 "              2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring')
+"              2025 Sep 05 by Vim Project, disable setting global ignorecase
 
 " Only do this when not done yet for this buffer
 if exists("b:did_ftplugin")
@@ -57,7 +58,7 @@ if exists("loaded_matchit")
   "    \ synIDattr(synID(line("."),col("."),1),"name") =~? "comment\\|string"'
 endif
 
-setlocal ignorecase
+setlocal ignorecase
 
 let &cpo = s:cpo_save
 unlet s:cpo_save