@@ -665,21 +665,17 @@ else
665
665
let s: launcher = function (' s:xterm_launcher' )
666
666
endif
667
667
668
- function ! s: exit_handler (code, command , ... )
669
- if a: code == 130
670
- return 0
671
- elseif has (' nvim' ) && a: code == 129
672
- " When deleting the terminal buffer while fzf is still running,
673
- " Nvim sends SIGHUP.
674
- return 0
675
- elseif a: code > 1
668
+ function ! s: exit_handler (dict , code, command , ... )
669
+ if has_key (a: dict , ' exit' )
670
+ call a: dict .exit (a: code )
671
+ endif
672
+ if a: code == 2
676
673
call s: error (' Error running ' . a: command )
677
674
if ! empty (a: 000 )
678
675
sleep
679
676
endif
680
- return 0
681
677
endif
682
- return 1
678
+ return a: code
683
679
endfunction
684
680
685
681
function ! s: execute (dict , command , use_height, temps) abort
@@ -731,7 +727,7 @@ function! s:execute(dict, command, use_height, temps) abort
731
727
let exit_status = v: shell_error
732
728
redraw !
733
729
let lines = s: collect (a: temps )
734
- return s: exit_handler (exit_status, command ) ? lines : []
730
+ return s: exit_handler (a: dict , exit_status, command ) == 0 ? lines : []
735
731
endfunction
736
732
737
733
function ! s: execute_tmux (dict , command , temps) abort
@@ -746,7 +742,7 @@ function! s:execute_tmux(dict, command, temps) abort
746
742
let exit_status = v: shell_error
747
743
redraw !
748
744
let lines = s: collect (a: temps )
749
- return s: exit_handler (exit_status, command ) ? lines : []
745
+ return s: exit_handler (a: dict , exit_status, command ) == 0 ? lines : []
750
746
endfunction
751
747
752
748
function ! s: calc_size (max , val, dict )
@@ -912,7 +908,7 @@ function! s:execute_term(dict, command, temps) abort
912
908
endif
913
909
914
910
let lines = s: collect (self .temps)
915
- if ! s: exit_handler (a: code , self .command , 1 )
911
+ if s: exit_handler (self . dict , a: code , self .command , 1 ) != 0
916
912
return
917
913
endif
918
914
0 commit comments