Skip to content
创建日期: 2026-06-11 22:32:18
最后更新: 2026-06-11 22:32:18
修订次数: 1

vim查找字符忽略大小写

临时控制

在搜索模式中添加 \c\C 临时控制

\c 忽略大小写

c
/\chello
c
hello
Hello
HELLO

\C 区分大小写

c
/\chello
c
hello
Hello
HELLO

设置

忽略大小写

c
:set ignorecase

区分大小写

c
:set noignorecase

智能匹配,当搜索模式中包含大写字母时,会自动切换为区分大小写的搜索

c
:set ignorecase smartcase
c
hello
Hello
HELLO

/hello
c
hello
Hello
HELLO

/Hello

Released under the MIT License.