lloeki / ex-mode

Ex mode for Atom
MIT License
169 stars 59 forks source link

Incremental and case insensitive search #124

Open sunjay opened 8 years ago

sunjay commented 8 years ago

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?

jazzpi commented 8 years ago

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.