mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 15:18:01 +00:00
19 lines
278 B
Markdown
19 lines
278 B
Markdown
# 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.
|