Support using migemo and smartsign feature at the same time
This commit is contained in:
parent
450f14521b
commit
1ca831d29d
@ -574,7 +574,12 @@ function! s:convertRegep(input) "{{{
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
if s:should_use_smartsign(a:input)
|
if s:should_use_smartsign(a:input)
|
||||||
let re = s:convertSmartsign(a:input)
|
let r = s:convertSmartsign(a:input)
|
||||||
|
if use_migemo
|
||||||
|
let re = re . '\m\|' . r
|
||||||
|
else
|
||||||
|
let re = r
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
let case_flag = EasyMotion#helper#should_case_sensitive(
|
let case_flag = EasyMotion#helper#should_case_sensitive(
|
||||||
|
Loading…
Reference in New Issue
Block a user