Keep undocumented ignore_exception option
It's used in plugins.
This commit is contained in:
parent
dd27cd628c
commit
a258f4b436
@ -53,6 +53,7 @@ function! EasyMotion#init()
|
||||
let s:EasyMotion_is_cancelled = 0
|
||||
" 0 -> Success
|
||||
" 1 -> Cancel
|
||||
let g:EasyMotion_ignore_exception = 0
|
||||
return ""
|
||||
endfunction
|
||||
"}}}
|
||||
@ -1522,7 +1523,8 @@ function! s:EasyMotion(regexp, direction, visualmode, is_inclusive, ...) " {{{
|
||||
redraw
|
||||
|
||||
" Show exception message
|
||||
if g:EasyMotion_verbose == 1
|
||||
" The verbose option will take precedence
|
||||
if g:EasyMotion_verbose == 1 && g:EasyMotion_ignore_exception != 1
|
||||
echo v:exception
|
||||
endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user