You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To make searching within a file faster and more convenient, I enable the following settings in my .vimrc:
" Makes search act like most modern browsers (immidiately finds)
set incsearch
" These two, when set together make searches containing capital letters
" case sensitive
set ignorecase
set smartcase
Is/Can there be a way to enable this in ex-mode?
The text was updated successfully, but these errors were encountered:
smartcase is already supported by vim-mode (via its "Use Smartcase For Search" option), ignorecase isn't (but I guess most people don't use that on its own anyways). incsearch isn't supported by vim-mode and can't be implemented in ex-mode, and there's an issue open at atom/vim-mode#493.
I added support for :set smartcase in #163 though.
To make searching within a file faster and more convenient, I enable the following settings in my
.vimrc
:Is/Can there be a way to enable this in ex-mode?
The text was updated successfully, but these errors were encountered: