From daa79a6df2282e7d0b45e648dcca3ed077a58828 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 10 Mar 2015 12:07:32 +0900 Subject: [PATCH] [vim] fzf#run with tmux panes can now return values to the caller As they're made synchronous with the use of fzf-tmux script --- plugin/fzf.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/fzf.vim b/plugin/fzf.vim index 69e7f71..a3b6abd 100644 --- a/plugin/fzf.vim +++ b/plugin/fzf.vim @@ -202,7 +202,7 @@ function! s:execute_tmux(dict, command, temps) endif call system(command) - call s:callback(a:dict, a:temps) + return s:callback(a:dict, a:temps) endfunction function! s:callback(dict, temps)