Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 278 Bytes

case-insensitive-substitution.md

File metadata and controls

18 lines (12 loc) · 278 Bytes

Case-Insensitive Substitution

Use the i s-flag to perform a case-insensitive substitution (search and replace).

For instance, :%s/blog/article/gi will turn

blog bLOg BLOG Blog

into

article article article article

See :h s_flags for more details.