-
Notifications
You must be signed in to change notification settings - Fork 80
/
vifm.vim
49 lines (45 loc) · 1.45 KB
/
vifm.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
" vim:sw=2:
" ============================================================================
" FileName: vifm.vim
" Author: kazhala <[email protected]>
" GitHub: https://github.com/kazhala
" ============================================================================
function! floaterm#wrapper#vifm#(cmd, jobopts, config) abort
let s:vifm_tmpfile = tempname()
let original_dir = getcwd()
lcd %:p:h
let cmdlist = split(a:cmd)
let cmd = 'vifm --choose-files "' . s:vifm_tmpfile . '"'
if len(cmdlist) > 1
let cmd .= ' ' . join(cmdlist[1:], ' ')
else
let cmd .= ' "' . getcwd() . '"'
endif
exe "lcd " . original_dir
let cmd = [&shell, &shellcmdflag, cmd]
let jobopts = {'on_exit': funcref('s:vifm_callback')}
call floaterm#util#deep_extend(a:jobopts, jobopts)
return [v:false, cmd]
endfunction
function! s:vifm_callback(job, data, event, opener) abort
if filereadable(s:vifm_tmpfile)
let filenames = readfile(s:vifm_tmpfile)
if !empty(filenames)
if has('nvim')
call floaterm#window#hide(bufnr('%'))
endif
let locations = []
for filename in filenames
if isdirectory(filename)
exe "cd " . fnameescape(filename)
else
let dict = {'filename': fnameescape(fnamemodify(filename, ':p'))}
call add(locations, dict)
endif
endfor
if len(locations) != 0
call floaterm#util#open(locations, a:opener)
endif
endif
endif
endfunction