1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 08:30:06 +08:00

Consider ignorecase and smartcase

This commit is contained in:
wsdjeg 2018-02-22 09:50:39 +08:00
parent b5df733e54
commit f5a4953877

View File

@ -77,7 +77,7 @@ function! s:flygrep(expr) abort
catch
endtr
hi def link FlyGrepPattern MoreMsg
let s:hi_id = matchadd('FlyGrepPattern', '\c' . join(split(a:expr), '\|'), 1)
let s:hi_id = matchadd('FlyGrepPattern', join(split(a:expr), '\|'), 1)
let s:grep_expr = a:expr
try
call timer_stop(s:grep_timer_id)
@ -152,7 +152,7 @@ function! s:start_replace() abort
if !empty(replace_text)
call SpaceVim#plugins#iedit#start({'expr' : replace_text}, line('w0'), line('w$'))
endif
let s:hi_id = matchadd('FlyGrepPattern', '\c' . join(split(replace_text), '\|'), 1)
let s:hi_id = matchadd('FlyGrepPattern', join(split(replace_text), '\|'), 1)
redrawstatus
endfunction
" }}}