2015-01-06 16:14:35 +00:00
|
|
|
" Copyright (c) 2015 Junegunn Choi
|
2013-10-23 01:26:55 +00:00
|
|
|
"
|
|
|
|
" MIT License
|
|
|
|
"
|
|
|
|
" Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
" a copy of this software and associated documentation files (the
|
|
|
|
" "Software"), to deal in the Software without restriction, including
|
|
|
|
" without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
" distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
" permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
" the following conditions:
|
|
|
|
"
|
|
|
|
" The above copyright notice and this permission notice shall be
|
|
|
|
" included in all copies or substantial portions of the Software.
|
|
|
|
"
|
|
|
|
" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
" EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
" NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
" LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
" OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
" WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2014-03-28 08:15:32 +00:00
|
|
|
let s:default_tmux_height = '40%'
|
2014-06-15 03:15:39 +00:00
|
|
|
let s:launcher = 'xterm -e bash -ic %s'
|
2015-01-06 16:14:35 +00:00
|
|
|
let s:fzf_go = expand('<sfile>:h:h').'/bin/fzf'
|
2014-06-27 12:03:25 +00:00
|
|
|
let s:fzf_rb = expand('<sfile>:h:h').'/fzf'
|
2015-03-09 16:41:35 +00:00
|
|
|
let s:fzf_tmux = expand('<sfile>:h:h').'/bin/fzf-tmux'
|
2015-03-28 18:00:32 +00:00
|
|
|
let s:legacy = 0
|
2014-03-27 15:58:07 +00:00
|
|
|
|
2014-03-25 10:55:52 +00:00
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2014-06-27 12:03:25 +00:00
|
|
|
function! s:fzf_exec()
|
|
|
|
if !exists('s:exec')
|
2015-03-07 00:46:32 +00:00
|
|
|
if executable(s:fzf_go)
|
|
|
|
let s:exec = s:fzf_go
|
2014-06-27 12:03:25 +00:00
|
|
|
else
|
2015-03-07 00:46:32 +00:00
|
|
|
let path = split(system('which fzf 2> /dev/null'), '\n')
|
|
|
|
if !v:shell_error && !empty(path)
|
|
|
|
let s:exec = path[0]
|
|
|
|
elseif executable(s:fzf_rb)
|
|
|
|
let s:exec = s:fzf_rb
|
2015-03-28 18:00:32 +00:00
|
|
|
let s:legacy = 1
|
2015-03-07 00:46:32 +00:00
|
|
|
else
|
|
|
|
call system('type fzf')
|
|
|
|
if v:shell_error
|
|
|
|
throw 'fzf executable not found'
|
|
|
|
else
|
|
|
|
let s:exec = 'fzf'
|
|
|
|
endif
|
|
|
|
endif
|
2014-06-27 12:03:25 +00:00
|
|
|
endif
|
2015-03-07 00:46:32 +00:00
|
|
|
return s:exec
|
2014-03-25 03:05:51 +00:00
|
|
|
else
|
2014-06-27 12:03:25 +00:00
|
|
|
return s:exec
|
2014-03-25 03:05:51 +00:00
|
|
|
endif
|
2014-06-27 12:03:25 +00:00
|
|
|
endfunction
|
2013-10-23 01:26:55 +00:00
|
|
|
|
2014-04-04 03:43:29 +00:00
|
|
|
function! s:tmux_enabled()
|
2014-06-14 18:04:15 +00:00
|
|
|
if has('gui_running')
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
|
2014-04-04 03:43:29 +00:00
|
|
|
if exists('s:tmux')
|
|
|
|
return s:tmux
|
|
|
|
endif
|
|
|
|
|
|
|
|
let s:tmux = 0
|
2015-03-09 16:41:35 +00:00
|
|
|
if exists('$TMUX') && executable(s:fzf_tmux)
|
2014-04-04 03:43:29 +00:00
|
|
|
let output = system('tmux -V')
|
|
|
|
let s:tmux = !v:shell_error && output >= 'tmux 1.7'
|
|
|
|
endif
|
|
|
|
return s:tmux
|
|
|
|
endfunction
|
|
|
|
|
2014-03-27 15:58:07 +00:00
|
|
|
function! s:shellesc(arg)
|
|
|
|
return '"'.substitute(a:arg, '"', '\\"', 'g').'"'
|
|
|
|
endfunction
|
|
|
|
|
2013-11-20 01:31:33 +00:00
|
|
|
function! s:escape(path)
|
|
|
|
return substitute(a:path, ' ', '\\ ', 'g')
|
|
|
|
endfunction
|
|
|
|
|
2015-03-09 16:41:35 +00:00
|
|
|
" Upgrade legacy options
|
|
|
|
function! s:upgrade(dict)
|
|
|
|
let copy = copy(a:dict)
|
|
|
|
if has_key(copy, 'tmux')
|
|
|
|
let copy.down = remove(copy, 'tmux')
|
|
|
|
endif
|
|
|
|
if has_key(copy, 'tmux_height')
|
|
|
|
let copy.down = remove(copy, 'tmux_height')
|
|
|
|
endif
|
|
|
|
if has_key(copy, 'tmux_width')
|
|
|
|
let copy.right = remove(copy, 'tmux_width')
|
|
|
|
endif
|
|
|
|
return copy
|
|
|
|
endfunction
|
|
|
|
|
2014-03-25 10:55:52 +00:00
|
|
|
function! fzf#run(...) abort
|
2015-03-09 16:41:35 +00:00
|
|
|
let dict = exists('a:1') ? s:upgrade(a:1) : {}
|
2014-03-27 15:58:07 +00:00
|
|
|
let temps = { 'result': tempname() }
|
2014-03-25 10:55:52 +00:00
|
|
|
let optstr = get(dict, 'options', '')
|
2014-06-27 12:03:25 +00:00
|
|
|
try
|
|
|
|
let fzf_exec = s:fzf_exec()
|
|
|
|
catch
|
|
|
|
throw v:exception
|
|
|
|
endtry
|
2014-03-25 10:55:52 +00:00
|
|
|
|
|
|
|
if has_key(dict, 'source')
|
|
|
|
let source = dict.source
|
|
|
|
let type = type(source)
|
|
|
|
if type == 1
|
|
|
|
let prefix = source.'|'
|
|
|
|
elseif type == 3
|
2014-03-27 15:58:07 +00:00
|
|
|
let temps.input = tempname()
|
|
|
|
call writefile(source, temps.input)
|
|
|
|
let prefix = 'cat '.s:shellesc(temps.input).'|'
|
2014-03-25 10:55:52 +00:00
|
|
|
else
|
|
|
|
throw 'Invalid source type'
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
let prefix = ''
|
|
|
|
endif
|
2015-03-09 16:41:35 +00:00
|
|
|
let split = s:tmux_enabled() && s:tmux_splittable(dict)
|
|
|
|
let command = prefix.(split ? s:fzf_tmux(dict) : fzf_exec).' '.optstr.' > '.temps.result
|
2014-03-25 10:55:52 +00:00
|
|
|
|
2015-03-09 16:41:35 +00:00
|
|
|
if split
|
2014-03-27 15:58:07 +00:00
|
|
|
return s:execute_tmux(dict, command, temps)
|
|
|
|
else
|
|
|
|
return s:execute(dict, command, temps)
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2015-03-10 03:13:11 +00:00
|
|
|
function! s:present(dict, ...)
|
|
|
|
for key in a:000
|
|
|
|
if !empty(get(a:dict, key, ''))
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return 0
|
|
|
|
endfunction
|
|
|
|
|
2015-03-09 16:41:35 +00:00
|
|
|
function! s:fzf_tmux(dict)
|
|
|
|
let size = ''
|
|
|
|
for o in ['up', 'down', 'left', 'right']
|
2015-03-10 03:13:11 +00:00
|
|
|
if s:present(a:dict, o)
|
|
|
|
let size = '-'.o[0].(a:dict[o] == 1 ? '' : a:dict[o])
|
2015-03-09 16:41:35 +00:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return printf('LINES=%d COLUMNS=%d %s %s %s --',
|
|
|
|
\ &lines, &columns, s:fzf_tmux, size, (has_key(a:dict, 'source') ? '' : '-'))
|
|
|
|
endfunction
|
|
|
|
|
2014-04-12 10:53:33 +00:00
|
|
|
function! s:tmux_splittable(dict)
|
2015-03-10 03:13:11 +00:00
|
|
|
return s:present(a:dict, 'up', 'down', 'left', 'right')
|
2014-04-12 10:53:33 +00:00
|
|
|
endfunction
|
|
|
|
|
2014-03-27 15:58:07 +00:00
|
|
|
function! s:pushd(dict)
|
2015-03-10 03:13:11 +00:00
|
|
|
if s:present(a:dict, 'dir')
|
2014-03-27 15:58:07 +00:00
|
|
|
let a:dict.prev_dir = getcwd()
|
|
|
|
execute 'chdir '.s:escape(a:dict.dir)
|
2015-03-09 16:41:35 +00:00
|
|
|
return 1
|
2014-03-27 15:58:07 +00:00
|
|
|
endif
|
2015-03-09 16:41:35 +00:00
|
|
|
return 0
|
2014-03-27 15:58:07 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:popd(dict)
|
|
|
|
if has_key(a:dict, 'prev_dir')
|
|
|
|
execute 'chdir '.s:escape(remove(a:dict, 'prev_dir'))
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:execute(dict, command, temps)
|
|
|
|
call s:pushd(a:dict)
|
2015-03-13 14:04:13 +00:00
|
|
|
silent! !clear 2> /dev/null
|
2014-06-14 18:04:15 +00:00
|
|
|
if has('gui_running')
|
2014-06-15 03:15:39 +00:00
|
|
|
let launcher = get(a:dict, 'launcher', get(g:, 'fzf_launcher', s:launcher))
|
|
|
|
let command = printf(launcher, "'".substitute(a:command, "'", "'\"'\"'", 'g')."'")
|
2014-06-14 18:04:15 +00:00
|
|
|
else
|
2014-06-15 03:15:39 +00:00
|
|
|
let command = a:command
|
2014-06-14 18:04:15 +00:00
|
|
|
endif
|
2014-06-15 03:15:39 +00:00
|
|
|
execute 'silent !'.command
|
2014-03-27 15:58:07 +00:00
|
|
|
redraw!
|
|
|
|
if v:shell_error
|
2014-07-04 09:35:04 +00:00
|
|
|
" Do not print error message on exit status 1
|
|
|
|
if v:shell_error > 1
|
|
|
|
echohl ErrorMsg
|
|
|
|
echo 'Error running ' . command
|
|
|
|
endif
|
2014-03-27 15:58:07 +00:00
|
|
|
return []
|
|
|
|
else
|
2015-03-09 16:41:35 +00:00
|
|
|
return s:callback(a:dict, a:temps)
|
2014-03-27 15:58:07 +00:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2014-08-07 18:23:24 +00:00
|
|
|
function! s:env_var(name)
|
|
|
|
if exists('$'.a:name)
|
|
|
|
return a:name . "='". substitute(expand('$'.a:name), "'", "'\\\\''", 'g') . "' "
|
|
|
|
else
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2014-03-27 15:58:07 +00:00
|
|
|
function! s:execute_tmux(dict, command, temps)
|
2015-03-09 16:41:35 +00:00
|
|
|
let command = a:command
|
|
|
|
if s:pushd(a:dict)
|
|
|
|
" -c '#{pane_current_path}' is only available on tmux 1.9 or above
|
2014-08-07 18:23:24 +00:00
|
|
|
let command = 'cd '.s:escape(a:dict.dir).' && '.command
|
2014-03-27 15:58:07 +00:00
|
|
|
endif
|
2014-03-28 08:15:32 +00:00
|
|
|
|
2015-03-09 16:41:35 +00:00
|
|
|
call system(command)
|
2015-03-10 03:07:32 +00:00
|
|
|
return s:callback(a:dict, a:temps)
|
2014-03-27 15:58:07 +00:00
|
|
|
endfunction
|
|
|
|
|
2015-03-09 16:41:35 +00:00
|
|
|
function! s:callback(dict, temps)
|
2014-03-27 15:58:07 +00:00
|
|
|
if !filereadable(a:temps.result)
|
|
|
|
let lines = []
|
|
|
|
else
|
|
|
|
let lines = readfile(a:temps.result)
|
|
|
|
if has_key(a:dict, 'sink')
|
2014-03-25 10:55:52 +00:00
|
|
|
for line in lines
|
2014-03-27 15:58:07 +00:00
|
|
|
if type(a:dict.sink) == 2
|
|
|
|
call a:dict.sink(line)
|
2014-03-25 10:55:52 +00:00
|
|
|
else
|
2015-03-28 18:00:32 +00:00
|
|
|
execute a:dict.sink s:escape(line)
|
2013-11-16 17:41:10 +00:00
|
|
|
endif
|
|
|
|
endfor
|
2013-10-23 01:26:55 +00:00
|
|
|
endif
|
2014-03-27 15:58:07 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
for tf in values(a:temps)
|
|
|
|
silent! call delete(tf)
|
|
|
|
endfor
|
|
|
|
|
|
|
|
call s:popd(a:dict)
|
|
|
|
|
|
|
|
return lines
|
2013-10-23 01:26:55 +00:00
|
|
|
endfunction
|
|
|
|
|
2014-03-27 15:58:07 +00:00
|
|
|
function! s:cmd(bang, ...) abort
|
2014-03-25 10:55:52 +00:00
|
|
|
let args = copy(a:000)
|
2015-03-28 18:00:32 +00:00
|
|
|
if !s:legacy
|
2015-03-29 02:14:16 +00:00
|
|
|
let args = insert(args, '--expect=ctrl-t,ctrl-x,ctrl-v', 0)
|
2015-03-28 18:00:32 +00:00
|
|
|
endif
|
2014-03-25 10:55:52 +00:00
|
|
|
let opts = {}
|
|
|
|
if len(args) > 0 && isdirectory(expand(args[-1]))
|
|
|
|
let opts.dir = remove(args, -1)
|
|
|
|
endif
|
2014-03-27 15:58:07 +00:00
|
|
|
if !a:bang
|
2015-03-09 16:41:35 +00:00
|
|
|
let opts.down = get(g:, 'fzf_tmux_height', s:default_tmux_height)
|
2014-03-27 15:58:07 +00:00
|
|
|
endif
|
2015-03-28 18:00:32 +00:00
|
|
|
|
|
|
|
if s:legacy
|
|
|
|
call fzf#run(extend({ 'sink': 'e', 'options': join(args) }, opts))
|
|
|
|
else
|
|
|
|
let output = fzf#run(extend({ 'options': join(args) }, opts))
|
|
|
|
if empty(output)
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
let key = remove(output, 0)
|
|
|
|
if key == 'ctrl-t' | let cmd = 'tabedit'
|
|
|
|
elseif key == 'ctrl-x' | let cmd = 'split'
|
|
|
|
elseif key == 'ctrl-v' | let cmd = 'vsplit'
|
|
|
|
else | let cmd = 'e'
|
|
|
|
endif
|
2015-03-29 02:14:16 +00:00
|
|
|
try
|
|
|
|
call s:pushd(opts)
|
|
|
|
for item in output
|
|
|
|
execute cmd s:escape(item)
|
|
|
|
endfor
|
|
|
|
finally
|
|
|
|
call s:popd(opts)
|
|
|
|
endtry
|
2015-03-28 18:00:32 +00:00
|
|
|
endif
|
2014-03-25 10:55:52 +00:00
|
|
|
endfunction
|
|
|
|
|
2014-03-27 15:58:07 +00:00
|
|
|
command! -nargs=* -complete=dir -bang FZF call s:cmd('<bang>' == '!', <f-args>)
|
2014-03-25 10:55:52 +00:00
|
|
|
|
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|
2013-10-23 01:26:55 +00:00
|
|
|
|