mirror of
https://github.com/iggredible/Learn-Vim
synced 2024-11-23 11:03:03 +00:00
small fix
This commit is contained in:
parent
c9659f8a5e
commit
e84dbadbb8
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ Hello
|
|||
You can control case insensitivity with the case of your search phrase:
|
||||
- `/hello` matches "hello", "HELLO", and "Hello".
|
||||
- `/HELLO` matches only "HELLO".
|
||||
- `/Hello` matches only "Hello"
|
||||
- `/Hello` matches only "Hello".
|
||||
|
||||
There is one downside. What if you need to search for only a lowercase string? When you do `/hello`, Vim will always match its uppercase variants. What if you don't want to match them? You can use `\C` pattern in front of your search term to tell Vim that the subsequent search term will be case sensitive. If you do `/\Chello`, it will strictly match "hello", not "HELLO" or "Hello".
|
||||
|
||||
|
|
Loading…
Reference in a new issue