Just type:
:set ignorecase
and to return back to normal:
:set noignorecase
If you would like to search case insensitive one time only without changing the mode in vim, for example lets search for the word "earth" case insensitively:
/\cearth
The \c character tells vim that the search should be case insensitive.
:set ignorecase
and to return back to normal:
:set noignorecase
If you would like to search case insensitive one time only without changing the mode in vim, for example lets search for the word "earth" case insensitively:
/\cearth
The \c character tells vim that the search should be case insensitive.
No comments:
Post a Comment