Skip to content

Commit 8cb59e6

Browse files
committed
[vim] Add 'exit' callback
A spec can have `exit` callback that is called with the exit status of fzf. This can be used to clean up temporary resources or restore the original state when fzf is closed without a selection.
1 parent 5cce17e commit 8cb59e6

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ CHANGELOG
2323

2424
fzf --preview "printf '<< \e]8;;http://github.com/junegunn/fzf\e\\Link to \e[32mfz\e[0mf\e]8;;\e\\ >>'"
2525
```
26+
- [vim] A spec can have `exit` callback that is called with the exit status of fzf
27+
- This can be used to clean up temporary resources or restore the original state when fzf is closed without a selection
2628
- Fixed `--tmux bottom` when the status line is not at the bottom
2729
- Fixed extra scroll offset in multi-line mode (`--read0` or `--wrap`)
2830
- Added fallback `ps` command for `kill` completion on Cygwin

README-VIM.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,9 @@ The following table summarizes the available options.
289289
| `source` | string | External command to generate input to fzf (e.g. `find .`) |
290290
| `source` | list | Vim list as input to fzf |
291291
| `sink` | string | Vim command to handle the selected item (e.g. `e`, `tabe`) |
292-
| `sink` | funcref | Reference to function to process each selected item |
292+
| `sink` | funcref | Function to be called with each selected item |
293293
| `sinklist` (or `sink*`) | funcref | Similar to `sink`, but takes the list of output lines at once |
294+
| `exit` | funcref | Function to be called with the exit status of fzf (e.g. 0, 1, 2, 130) |
294295
| `options` | string/list | Options to fzf |
295296
| `dir` | string | Working directory |
296297
| `up`/`down`/`left`/`right` | number/string | (Layout) Window position and size (e.g. `20`, `50%`) |

doc/fzf.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,9 @@ The following table summarizes the available options.
306306
`source` | string | External command to generate input to fzf (e.g. `find .` )
307307
`source` | list | Vim list as input to fzf
308308
`sink` | string | Vim command to handle the selected item (e.g. `e` , `tabe` )
309-
`sink` | funcref | Reference to function to process each selected item
309+
`sink` | funcref | Function to be called with each selected item
310310
`sinklist` (or `sink*` ) | funcref | Similar to `sink` , but takes the list of output lines at once
311+
`exit` | funcref | Function to be called with the exit status of fzf (e.g. 0, 1, 2, 130)
311312
`options` | string/list | Options to fzf
312313
`dir` | string | Working directory
313314
`up` / `down` / `left` / `right` | number/string | (Layout) Window position and size (e.g. `20` , `50%` )

plugin/fzf.vim

+9-13
Original file line numberDiff line numberDiff line change
@@ -665,21 +665,17 @@ else
665665
let s:launcher = function('s:xterm_launcher')
666666
endif
667667

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
676673
call s:error('Error running ' . a:command)
677674
if !empty(a:000)
678675
sleep
679676
endif
680-
return 0
681677
endif
682-
return 1
678+
return a:code
683679
endfunction
684680

685681
function! s:execute(dict, command, use_height, temps) abort
@@ -731,7 +727,7 @@ function! s:execute(dict, command, use_height, temps) abort
731727
let exit_status = v:shell_error
732728
redraw!
733729
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 : []
735731
endfunction
736732

737733
function! s:execute_tmux(dict, command, temps) abort
@@ -746,7 +742,7 @@ function! s:execute_tmux(dict, command, temps) abort
746742
let exit_status = v:shell_error
747743
redraw!
748744
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 : []
750746
endfunction
751747

752748
function! s:calc_size(max, val, dict)
@@ -912,7 +908,7 @@ function! s:execute_term(dict, command, temps) abort
912908
endif
913909

914910
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
916912
return
917913
endif
918914

0 commit comments

Comments
 (0)