From: Christian Brabandt Date: Fri, 5 Sep 2025 18:57:34 +0000 (+0200) Subject: runtime(hamster): do not globally set ignorecase X-Git-Tag: v9.1.1735~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f737ff8c88b5fb77050ba44d986ee20d59ad37be;p=thirdparty%2Fvim.git runtime(hamster): do not globally set ignorecase related: #15772 Signed-off-by: Christian Brabandt --- diff --git a/runtime/ftplugin/hamster.vim b/runtime/ftplugin/hamster.vim index 904f267fdc..a204cbb745 100644 --- a/runtime/ftplugin/hamster.vim +++ b/runtime/ftplugin/hamster.vim @@ -4,6 +4,7 @@ " Maintainer: David Fishburn " Last Change: 2021 Jan 19 " 2024 May 23 by Riley Bruins ('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