1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00

Add Case-Insensitive Substitution as a vim til.

This commit is contained in:
jbranchaud
2015-08-24 21:25:00 -05:00
parent 527713541a
commit 3d1477775a
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# 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.