Keep undocumented ignore_exception option

It's used in plugins.
This commit is contained in:
somini 2015-08-08 23:36:18 +01:00
parent dd27cd628c
commit a258f4b436

View File

@ -53,6 +53,7 @@ function! EasyMotion#init()
let s:EasyMotion_is_cancelled = 0 let s:EasyMotion_is_cancelled = 0
" 0 -> Success " 0 -> Success
" 1 -> Cancel " 1 -> Cancel
let g:EasyMotion_ignore_exception = 0
return "" return ""
endfunction endfunction
"}}} "}}}
@ -1522,7 +1523,8 @@ function! s:EasyMotion(regexp, direction, visualmode, is_inclusive, ...) " {{{
redraw redraw
" Show exception message " 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 echo v:exception
endif endif