noignorecase VIM Command
How to use noignorecase Command in Linux VIM editor?
Explanation
noignorecase command is used to turn off ignorecase and perform a case sensitive searching. When we set this command, the vim will consider the letter with case.
Usage:
:set noignorecase
Example:
- Open the file test.txt
$ vim test.txt
- To turn off the ignore case in search
:set noignorecase
- To search the letter 'I' in the file.
Enter /I