summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-03-10 12:07:32 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-03-10 12:07:32 +0900
commitdaa79a6df2282e7d0b45e648dcca3ed077a58828 (patch)
tree34d06804240f185faa6d050cc013c8eb35087be2
parent48e0c1e721a5a18ad4066a81170995db96a7610a (diff)
[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
-rw-r--r--plugin/fzf.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/fzf.vim b/plugin/fzf.vim
index 69e7f717..a3b6abdc 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)