From 857619995ef54d66141fc4de882481fc6c44d186 Mon Sep 17 00:00:00 2001
From: Junegunn Choi <junegunn.c@gmail.com>
Date: Thu, 23 Apr 2015 19:29:42 +0900
Subject: [PATCH] [vim] Ignore E325 (#213)

---
 plugin/fzf.vim | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/plugin/fzf.vim b/plugin/fzf.vim
index bb0b10b8..8301cb93 100644
--- a/plugin/fzf.vim
+++ b/plugin/fzf.vim
@@ -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 = {
-- 
GitLab