Sun Mar 16
Vim practice
Author:Noritaka
Set search pattern smartcase
Copy and paste the below text and type some commands like below.
---
1. :set ignorecase smartcase (SET SEARCH PATTERN)
2. /word (You can search for all matching words, including uppercase ones.)
3. /Word (You can search only for 'Word'.)
---
word Word WORD
TIP72