Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unset ignorecase in vim?

Tags:

vim

:set ic ignores the case. How do you unset this?

like image 840
kal Avatar asked Jan 17 '09 01:01

kal


People also ask

How do I disable case-sensitive search in Vim?

You can use in your vimrc those commands: set ignorecase - All your searches will be case insensitive.

How do I ignore case in vi?

By default, all searches in vi are case-sensitive. To do a case-insensitive search, go into command mode (press Escape), and type :set ignorecase . You can also type :set ic as an abbreviation.

What is Smartcase in Vim?

Case-insensitive search in Vim. If you want this behavior by default, you can turn on the option: set ignorecase. There's also a so-called "smartcase" ( :help smartcase ) which works as case-insensitive if you only use lowercase letters; otherwise, it will search in case-sensitive mode.


1 Answers

:set noic, or :set noignorecase

Really intuitive, right? :)

like image 90
Dave Ray Avatar answered Oct 08 '22 02:10

Dave Ray