Skip to content
Snippets Groups Projects
Commit 85761999 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

[vim] Ignore E325 (#213)

parent 9310ae28
No related branches found
No related tags found
No related merge requests found
......@@ -300,6 +300,7 @@ function! s:execute_term(dict, command, temps)
endfunction
function! s:callback(dict, temps)
try
if !filereadable(a:temps.result)
let lines = []
else
......@@ -323,6 +324,11 @@ function! s:callback(dict, temps)
endfor
return lines
catch
if stridx(v:exception, ':E325:') < 0
echoerr v:exception
endif
endtry
endfunction
let s:default_action = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment