2017-01-29 16:47:30 +00:00
|
|
|
" Copyright (c) 2017 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.
|
|
|
|
|
2016-10-18 06:00:47 +00:00
|
|
|
if exists('g:loaded_fzf')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_fzf = 1
|
|
|
|
|
2017-04-22 02:30:51 +00:00
|
|
|
let s:is_win = has('win32') || has('win64')
|
|
|
|
if s:is_win && &shellslash
|
|
|
|
set noshellslash
|
|
|
|
let s:base_dir = expand('<sfile>:h:h')
|
|
|
|
set shellslash
|
|
|
|
else
|
|
|
|
let s:base_dir = expand('<sfile>:h:h')
|
|
|
|
endif
|
|
|
|
if s:is_win
|
2017-08-27 00:10:01 +00:00
|
|
|
let s:term_marker = '&::FZF'
|
|
|
|
|
2017-04-22 02:30:51 +00:00
|
|
|
function! s:fzf_call(fn, ...)
|
|
|
|
let shellslash = &shellslash
|
|
|
|
try
|
|
|
|
set noshellslash
|
|
|
|
return call(a:fn, a:000)
|
|
|
|
finally
|
|
|
|
let &shellslash = shellslash
|
|
|
|
endtry
|
|
|
|
endfunction
|
2017-05-31 00:56:01 +00:00
|
|
|
|
|
|
|
" Use utf-8 for fzf.vim commands
|
|
|
|
" Return array of shell commands for cmd.exe
|
2019-12-16 05:41:03 +00:00
|
|
|
function! s:enc_to_cp(str)
|
2020-01-07 07:11:47 +00:00
|
|
|
if !has('iconv')
|
|
|
|
return a:str
|
|
|
|
endif
|
|
|
|
if !exists('s:codepage')
|
|
|
|
let s:codepage = libcallnr('kernel32.dll', 'GetACP', 0)
|
|
|
|
endif
|
2019-12-16 05:41:03 +00:00
|
|
|
return iconv(a:str, &encoding, 'cp'.s:codepage)
|
|
|
|
endfunction
|
2017-05-31 00:56:01 +00:00
|
|
|
function! s:wrap_cmds(cmds)
|
2019-10-08 00:41:22 +00:00
|
|
|
return map([
|
|
|
|
\ '@echo off',
|
2019-11-02 05:35:21 +00:00
|
|
|
\ 'setlocal enabledelayedexpansion']
|
2019-12-15 09:25:58 +00:00
|
|
|
\ + (has('gui_running') ? ['set TERM= > nul'] : [])
|
2019-10-08 00:41:22 +00:00
|
|
|
\ + (type(a:cmds) == type([]) ? a:cmds : [a:cmds])
|
2019-11-02 05:35:21 +00:00
|
|
|
\ + ['endlocal'],
|
2019-12-16 05:41:03 +00:00
|
|
|
\ '<SID>enc_to_cp(v:val."\r")')
|
2017-05-31 00:56:01 +00:00
|
|
|
endfunction
|
2017-04-22 02:30:51 +00:00
|
|
|
else
|
2017-08-27 00:10:01 +00:00
|
|
|
let s:term_marker = ";#FZF"
|
|
|
|
|
2017-04-22 02:30:51 +00:00
|
|
|
function! s:fzf_call(fn, ...)
|
|
|
|
return call(a:fn, a:000)
|
|
|
|
endfunction
|
2017-05-31 00:56:01 +00:00
|
|
|
|
|
|
|
function! s:wrap_cmds(cmds)
|
|
|
|
return a:cmds
|
|
|
|
endfunction
|
2019-12-16 05:41:03 +00:00
|
|
|
|
|
|
|
function! s:enc_to_cp(str)
|
|
|
|
return a:str
|
|
|
|
endfunction
|
2017-04-22 02:30:51 +00:00
|
|
|
endif
|
|
|
|
|
2017-05-29 01:06:06 +00:00
|
|
|
function! s:shellesc_cmd(arg)
|
|
|
|
let escaped = substitute(a:arg, '[&|<>()@^]', '^&', 'g')
|
|
|
|
let escaped = substitute(escaped, '%', '%%', 'g')
|
|
|
|
let escaped = substitute(escaped, '"', '\\^&', 'g')
|
2017-08-20 03:28:36 +00:00
|
|
|
let escaped = substitute(escaped, '\(\\\+\)\(\\^\)', '\1\1\2', 'g')
|
|
|
|
return '^"'.substitute(escaped, '\(\\\+\)$', '\1\1', '').'^"'
|
2017-05-29 01:06:06 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! fzf#shellescape(arg, ...)
|
2019-12-15 09:25:58 +00:00
|
|
|
let shell = get(a:000, 0, s:is_win ? 'cmd.exe' : 'sh')
|
2017-05-29 01:06:06 +00:00
|
|
|
if shell =~# 'cmd.exe$'
|
|
|
|
return s:shellesc_cmd(a:arg)
|
|
|
|
endif
|
|
|
|
return s:fzf_call('shellescape', a:arg)
|
|
|
|
endfunction
|
|
|
|
|
2017-04-22 02:30:51 +00:00
|
|
|
function! s:fzf_getcwd()
|
|
|
|
return s:fzf_call('getcwd')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:fzf_fnamemodify(fname, mods)
|
|
|
|
return s:fzf_call('fnamemodify', a:fname, a:mods)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:fzf_expand(fmt)
|
2017-05-21 16:23:59 +00:00
|
|
|
return s:fzf_call('expand', a:fmt, 1)
|
2017-04-22 02:30:51 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:fzf_tempname()
|
|
|
|
return s:fzf_call('tempname')
|
|
|
|
endfunction
|
|
|
|
|
2020-04-05 09:14:05 +00:00
|
|
|
let s:layout_keys = ['window', 'tmux', 'up', 'down', 'left', 'right']
|
2017-02-04 17:07:54 +00:00
|
|
|
let s:fzf_go = s:base_dir.'/bin/fzf'
|
|
|
|
let s:fzf_tmux = s:base_dir.'/bin/fzf-tmux'
|
2014-03-27 15:58:07 +00:00
|
|
|
|
2014-03-25 10:55:52 +00:00
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2020-09-12 12:08:05 +00:00
|
|
|
function! s:popup_support()
|
|
|
|
return has('nvim') ? has('nvim-0.4') : has('popupwin') && has('patch-8.2.191')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:default_layout()
|
|
|
|
return s:popup_support()
|
2020-10-27 04:53:24 +00:00
|
|
|
\ ? { 'window' : { 'width': 0.9, 'height': 0.6 } }
|
2020-09-12 12:08:05 +00:00
|
|
|
\ : { 'down': '~40%' }
|
|
|
|
endfunction
|
|
|
|
|
2020-02-14 05:01:46 +00:00
|
|
|
function! fzf#install()
|
2020-02-12 09:01:41 +00:00
|
|
|
if s:is_win && !has('win32unix')
|
|
|
|
let script = s:base_dir.'/install.ps1'
|
|
|
|
if !filereadable(script)
|
2020-02-14 05:01:46 +00:00
|
|
|
throw script.' not found'
|
2020-02-12 09:01:41 +00:00
|
|
|
endif
|
|
|
|
let script = 'powershell -ExecutionPolicy Bypass -file ' . script
|
|
|
|
else
|
|
|
|
let script = s:base_dir.'/install'
|
|
|
|
if !executable(script)
|
2020-02-14 05:01:46 +00:00
|
|
|
throw script.' not found'
|
2020-02-12 09:01:41 +00:00
|
|
|
endif
|
|
|
|
let script .= ' --bin'
|
|
|
|
endif
|
|
|
|
|
2020-02-14 05:01:46 +00:00
|
|
|
call s:warn('Running fzf installer ...')
|
2020-02-12 09:01:41 +00:00
|
|
|
call system(script)
|
2020-02-14 05:01:46 +00:00
|
|
|
if v:shell_error
|
|
|
|
throw 'Failed to download fzf: '.script
|
|
|
|
endif
|
2020-02-12 09:01:41 +00:00
|
|
|
endfunction
|
|
|
|
|
2020-10-26 16:01:58 +00:00
|
|
|
function! s:version_requirement(val, min)
|
|
|
|
let val = split(a:val, '\.')
|
|
|
|
let min = split(a:min, '\.')
|
|
|
|
for idx in range(0, len(min) - 1)
|
|
|
|
let v = get(val, idx, 0)
|
|
|
|
if v < min[idx] | return 0
|
|
|
|
elseif v > min[idx] | return 1
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return 1
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
let s:checked = {}
|
|
|
|
function! fzf#exec(...)
|
2014-06-27 12:03:25 +00:00
|
|
|
if !exists('s:exec')
|
2015-03-07 00:46:32 +00:00
|
|
|
if executable(s:fzf_go)
|
2017-05-21 16:04:04 +00:00
|
|
|
let s:exec = s:fzf_go
|
2015-05-02 15:58:45 +00:00
|
|
|
elseif executable('fzf')
|
|
|
|
let s:exec = 'fzf'
|
2020-02-14 05:01:46 +00:00
|
|
|
elseif input('fzf executable not found. Download binary? (y/n) ') =~? '^y'
|
|
|
|
redraw
|
|
|
|
call fzf#install()
|
2020-09-08 15:02:37 +00:00
|
|
|
return fzf#exec()
|
2014-06-27 12:03:25 +00:00
|
|
|
else
|
2015-05-02 15:58:45 +00:00
|
|
|
redraw
|
|
|
|
throw 'fzf executable not found'
|
2014-06-27 12:03:25 +00:00
|
|
|
endif
|
2014-03-25 03:05:51 +00:00
|
|
|
endif
|
2020-10-26 16:01:58 +00:00
|
|
|
|
|
|
|
if a:0 && !has_key(s:checked, a:1)
|
|
|
|
let command = s:exec . ' --version'
|
|
|
|
let output = systemlist(command)
|
|
|
|
if v:shell_error || empty(output)
|
|
|
|
throw printf('Failed to run "%s": %s', command, output)
|
|
|
|
endif
|
2020-10-30 12:55:30 +00:00
|
|
|
let fzf_version = matchstr(output[-1], '[0-9.]\+')
|
2020-10-26 16:01:58 +00:00
|
|
|
if s:version_requirement(fzf_version, a:1)
|
|
|
|
let s:checked[a:1] = 1
|
|
|
|
return s:exec
|
|
|
|
elseif a:0 < 2 && input(printf('You need fzf %s or above. Found: %s. Download binary? (y/n) ', a:1, fzf_version)) =~? '^y'
|
|
|
|
redraw
|
|
|
|
call fzf#install()
|
|
|
|
return fzf#exec(a:1, 1)
|
|
|
|
else
|
|
|
|
throw printf('You need to upgrade fzf (required: %s or above)', a:1)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2020-09-08 15:02:37 +00:00
|
|
|
return s:exec
|
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()
|
2020-02-16 03:32:20 +00:00
|
|
|
if has('gui_running') || !exists('$TMUX')
|
2014-06-14 18:04:15 +00:00
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
|
2014-04-04 03:43:29 +00:00
|
|
|
if exists('s:tmux')
|
2015-12-08 01:45:22 +00:00
|
|
|
return s:tmux
|
2014-04-04 03:43:29 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
let s:tmux = 0
|
2020-02-16 03:32:20 +00:00
|
|
|
if !executable(s:fzf_tmux)
|
|
|
|
if executable('fzf-tmux')
|
|
|
|
let s:fzf_tmux = 'fzf-tmux'
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
endif
|
2014-04-04 03:43:29 +00:00
|
|
|
endif
|
2020-02-16 03:32:20 +00:00
|
|
|
|
|
|
|
let output = system('tmux -V')
|
|
|
|
let s:tmux = !v:shell_error && output >= 'tmux 1.7'
|
2015-12-08 01:45:22 +00:00
|
|
|
return s:tmux
|
2014-04-04 03:43:29 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-11-20 01:31:33 +00:00
|
|
|
function! s:escape(path)
|
2017-07-18 07:33:58 +00:00
|
|
|
let path = fnameescape(a:path)
|
|
|
|
return s:is_win ? escape(path, '$') : path
|
2013-11-20 01:31:33 +00:00
|
|
|
endfunction
|
|
|
|
|
2015-09-20 05:09:54 +00:00
|
|
|
function! s:error(msg)
|
|
|
|
echohl ErrorMsg
|
|
|
|
echom a:msg
|
|
|
|
echohl None
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:warn(msg)
|
|
|
|
echohl WarningMsg
|
|
|
|
echom a:msg
|
|
|
|
echohl None
|
|
|
|
endfunction
|
|
|
|
|
2016-07-25 17:35:40 +00:00
|
|
|
function! s:has_any(dict, keys)
|
|
|
|
for key in a:keys
|
|
|
|
if has_key(a:dict, key)
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return 0
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:open(cmd, target)
|
2017-04-22 02:30:51 +00:00
|
|
|
if stridx('edit', a:cmd) == 0 && s:fzf_fnamemodify(a:target, ':p') ==# s:fzf_expand('%:p')
|
2016-07-25 17:35:40 +00:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
execute a:cmd s:escape(a:target)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:common_sink(action, lines) abort
|
|
|
|
if len(a:lines) < 2
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
let key = remove(a:lines, 0)
|
2017-08-14 07:22:07 +00:00
|
|
|
let Cmd = get(a:action, key, 'e')
|
|
|
|
if type(Cmd) == type(function('call'))
|
|
|
|
return Cmd(a:lines)
|
|
|
|
endif
|
2016-07-25 17:35:40 +00:00
|
|
|
if len(a:lines) > 1
|
|
|
|
augroup fzf_swap
|
|
|
|
autocmd SwapExists * let v:swapchoice='o'
|
2017-04-22 02:30:51 +00:00
|
|
|
\| call s:warn('fzf: E325: swap file exists: '.s:fzf_expand('<afile>'))
|
2016-07-25 17:35:40 +00:00
|
|
|
augroup END
|
|
|
|
endif
|
|
|
|
try
|
2017-04-22 02:30:51 +00:00
|
|
|
let empty = empty(s:fzf_expand('%')) && line('$') == 1 && empty(getline(1)) && !&modified
|
2020-07-15 04:20:56 +00:00
|
|
|
" Preserve the current working directory in case it's changed during
|
|
|
|
" the execution (e.g. `set autochdir` or `autocmd BufEnter * lcd ...`)
|
|
|
|
let cwd = exists('w:fzf_pushd') ? w:fzf_pushd.dir : expand('%:p:h')
|
2016-07-25 17:35:40 +00:00
|
|
|
for item in a:lines
|
2020-07-15 04:20:56 +00:00
|
|
|
if item[0] != '~' && item !~ (s:is_win ? '^[A-Z]:\' : '^/')
|
2020-11-05 09:14:45 +00:00
|
|
|
let sep = s:is_win ? '\' : '/'
|
|
|
|
let item = join([cwd, item], cwd[len(cwd)-1] == sep ? '' : sep)
|
2020-07-15 04:20:56 +00:00
|
|
|
endif
|
2016-07-25 17:35:40 +00:00
|
|
|
if empty
|
|
|
|
execute 'e' s:escape(item)
|
|
|
|
let empty = 0
|
|
|
|
else
|
2017-08-14 07:22:07 +00:00
|
|
|
call s:open(Cmd, item)
|
2016-07-25 17:35:40 +00:00
|
|
|
endif
|
2017-01-14 11:55:30 +00:00
|
|
|
if !has('patch-8.0.0177') && !has('nvim-0.2') && exists('#BufEnter')
|
|
|
|
\ && isdirectory(item)
|
2016-07-25 17:35:40 +00:00
|
|
|
doautocmd BufEnter
|
|
|
|
endif
|
|
|
|
endfor
|
2018-04-26 01:23:18 +00:00
|
|
|
catch /^Vim:Interrupt$/
|
2016-07-25 17:35:40 +00:00
|
|
|
finally
|
|
|
|
silent! autocmd! fzf_swap
|
|
|
|
endtry
|
|
|
|
endfunction
|
|
|
|
|
2016-10-21 16:14:04 +00:00
|
|
|
function! s:get_color(attr, ...)
|
2019-12-15 13:17:24 +00:00
|
|
|
let gui = !s:is_win && !has('win32unix') && has('termguicolors') && &termguicolors
|
2017-01-22 05:40:30 +00:00
|
|
|
let fam = gui ? 'gui' : 'cterm'
|
|
|
|
let pat = gui ? '^#[a-f0-9]\+' : '^[0-9]\+$'
|
2016-10-21 16:14:04 +00:00
|
|
|
for group in a:000
|
2017-01-22 05:40:30 +00:00
|
|
|
let code = synIDattr(synIDtrans(hlID(group)), a:attr, fam)
|
|
|
|
if code =~? pat
|
2016-10-21 16:14:04 +00:00
|
|
|
return code
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:defaults()
|
|
|
|
let rules = copy(get(g:, 'fzf_colors', {}))
|
|
|
|
let colors = join(map(items(filter(map(rules, 'call("s:get_color", v:val)'), '!empty(v:val)')), 'join(v:val, ":")'), ',')
|
2019-09-09 03:12:42 +00:00
|
|
|
return empty(colors) ? '' : fzf#shellescape('--color='.colors)
|
2016-10-21 16:14:04 +00:00
|
|
|
endfunction
|
|
|
|
|
2017-03-02 05:14:57 +00:00
|
|
|
function! s:validate_layout(layout)
|
|
|
|
for key in keys(a:layout)
|
|
|
|
if index(s:layout_keys, key) < 0
|
2017-03-02 05:17:59 +00:00
|
|
|
throw printf('Invalid entry in g:fzf_layout: %s (allowed: %s)%s',
|
2017-03-02 05:14:57 +00:00
|
|
|
\ key, join(s:layout_keys, ', '), key == 'options' ? '. Use $FZF_DEFAULT_OPTS.' : '')
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return a:layout
|
|
|
|
endfunction
|
|
|
|
|
2017-04-22 02:30:51 +00:00
|
|
|
function! s:evaluate_opts(options)
|
|
|
|
return type(a:options) == type([]) ?
|
2017-05-29 01:06:06 +00:00
|
|
|
\ join(map(copy(a:options), 'fzf#shellescape(v:val)')) : a:options
|
2017-04-22 02:30:51 +00:00
|
|
|
endfunction
|
|
|
|
|
2016-08-18 18:04:20 +00:00
|
|
|
" [name string,] [opts dict,] [fullscreen boolean]
|
|
|
|
function! fzf#wrap(...)
|
|
|
|
let args = ['', {}, 0]
|
|
|
|
let expects = map(copy(args), 'type(v:val)')
|
|
|
|
let tidx = 0
|
|
|
|
for arg in copy(a:000)
|
2020-06-20 13:12:50 +00:00
|
|
|
let tidx = index(expects, type(arg) == 6 ? type(0) : type(arg), tidx)
|
2016-08-18 18:04:20 +00:00
|
|
|
if tidx < 0
|
2017-03-02 05:17:59 +00:00
|
|
|
throw 'Invalid arguments (expected: [name string] [opts dict] [fullscreen boolean])'
|
2016-08-18 18:04:20 +00:00
|
|
|
endif
|
|
|
|
let args[tidx] = arg
|
|
|
|
let tidx += 1
|
2016-08-19 09:02:32 +00:00
|
|
|
unlet arg
|
2016-08-18 18:04:20 +00:00
|
|
|
endfor
|
|
|
|
let [name, opts, bang] = args
|
2016-07-25 17:35:40 +00:00
|
|
|
|
2017-01-31 16:06:52 +00:00
|
|
|
if len(name)
|
|
|
|
let opts.name = name
|
|
|
|
end
|
|
|
|
|
2016-07-25 17:35:40 +00:00
|
|
|
" Layout: g:fzf_layout (and deprecated g:fzf_height)
|
|
|
|
if bang
|
|
|
|
for key in s:layout_keys
|
|
|
|
if has_key(opts, key)
|
|
|
|
call remove(opts, key)
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
elseif !s:has_any(opts, s:layout_keys)
|
|
|
|
if !exists('g:fzf_layout') && exists('g:fzf_height')
|
|
|
|
let opts.down = g:fzf_height
|
|
|
|
else
|
2020-09-12 12:08:05 +00:00
|
|
|
let opts = extend(opts, s:validate_layout(get(g:, 'fzf_layout', s:default_layout())))
|
2016-07-25 17:35:40 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-10-21 16:14:04 +00:00
|
|
|
" Colors: g:fzf_colors
|
2017-04-22 02:30:51 +00:00
|
|
|
let opts.options = s:defaults() .' '. s:evaluate_opts(get(opts, 'options', ''))
|
2016-10-21 16:14:04 +00:00
|
|
|
|
2016-07-25 17:35:40 +00:00
|
|
|
" History: g:fzf_history_dir
|
2016-08-18 18:04:20 +00:00
|
|
|
if len(name) && len(get(g:, 'fzf_history_dir', ''))
|
2017-04-22 02:30:51 +00:00
|
|
|
let dir = s:fzf_expand(g:fzf_history_dir)
|
2016-07-25 17:35:40 +00:00
|
|
|
if !isdirectory(dir)
|
|
|
|
call mkdir(dir, 'p')
|
|
|
|
endif
|
2017-05-31 14:59:11 +00:00
|
|
|
let history = fzf#shellescape(dir.'/'.name)
|
2017-04-22 02:30:51 +00:00
|
|
|
let opts.options = join(['--history', history, opts.options])
|
2016-07-25 17:35:40 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
" Action: g:fzf_action
|
|
|
|
if !s:has_any(opts, ['sink', 'sink*'])
|
|
|
|
let opts._action = get(g:, 'fzf_action', s:default_action)
|
|
|
|
let opts.options .= ' --expect='.join(keys(opts._action), ',')
|
|
|
|
function! opts.sink(lines) abort
|
|
|
|
return s:common_sink(self._action, a:lines)
|
|
|
|
endfunction
|
|
|
|
let opts['sink*'] = remove(opts, 'sink')
|
|
|
|
endif
|
|
|
|
|
|
|
|
return opts
|
|
|
|
endfunction
|
|
|
|
|
2017-08-30 09:58:28 +00:00
|
|
|
function! s:use_sh()
|
2019-12-15 09:25:58 +00:00
|
|
|
let [shell, shellslash, shellcmdflag, shellxquote] = [&shell, &shellslash, &shellcmdflag, &shellxquote]
|
2017-02-04 17:07:54 +00:00
|
|
|
if s:is_win
|
2017-01-01 02:48:15 +00:00
|
|
|
set shell=cmd.exe
|
2017-01-01 04:11:06 +00:00
|
|
|
set noshellslash
|
2019-12-15 09:25:58 +00:00
|
|
|
let &shellcmdflag = has('nvim') ? '/s /c' : '/c'
|
|
|
|
let &shellxquote = has('nvim') ? '"' : '('
|
2017-01-01 02:48:15 +00:00
|
|
|
else
|
|
|
|
set shell=sh
|
|
|
|
endif
|
2019-12-15 09:25:58 +00:00
|
|
|
return [shell, shellslash, shellcmdflag, shellxquote]
|
2017-08-30 09:58:28 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! fzf#run(...) abort
|
|
|
|
try
|
2019-12-15 09:25:58 +00:00
|
|
|
let [shell, shellslash, shellcmdflag, shellxquote] = s:use_sh()
|
2017-01-01 02:48:15 +00:00
|
|
|
|
2020-04-05 09:14:05 +00:00
|
|
|
let dict = exists('a:1') ? copy(a:1) : {}
|
2017-04-22 02:30:51 +00:00
|
|
|
let temps = { 'result': s:fzf_tempname() }
|
|
|
|
let optstr = s:evaluate_opts(get(dict, 'options', ''))
|
2014-06-27 12:03:25 +00:00
|
|
|
try
|
2020-09-08 15:02:37 +00:00
|
|
|
let fzf_exec = fzf#shellescape(fzf#exec())
|
2014-06-27 12:03:25 +00:00
|
|
|
catch
|
|
|
|
throw v:exception
|
|
|
|
endtry
|
2014-03-25 10:55:52 +00:00
|
|
|
|
2018-08-20 06:31:41 +00:00
|
|
|
if !has_key(dict, 'dir')
|
2017-04-22 02:30:51 +00:00
|
|
|
let dict.dir = s:fzf_getcwd()
|
2017-02-25 14:52:56 +00:00
|
|
|
endif
|
2017-06-09 03:00:59 +00:00
|
|
|
if has('win32unix') && has_key(dict, 'dir')
|
|
|
|
let dict.dir = fnamemodify(dict.dir, ':p')
|
|
|
|
endif
|
2017-02-25 14:52:56 +00:00
|
|
|
|
2014-03-25 10:55:52 +00:00
|
|
|
if has_key(dict, 'source')
|
|
|
|
let source = dict.source
|
|
|
|
let type = type(source)
|
|
|
|
if type == 1
|
2017-08-28 13:32:13 +00:00
|
|
|
let prefix = '( '.source.' )|'
|
2014-03-25 10:55:52 +00:00
|
|
|
elseif type == 3
|
2017-04-22 02:30:51 +00:00
|
|
|
let temps.input = s:fzf_tempname()
|
2020-10-27 14:53:25 +00:00
|
|
|
call writefile(source, temps.input)
|
2017-05-29 01:06:06 +00:00
|
|
|
let prefix = (s:is_win ? 'type ' : 'cat ').fzf#shellescape(temps.input).'|'
|
2014-03-25 10:55:52 +00:00
|
|
|
else
|
2017-03-02 05:17:59 +00:00
|
|
|
throw 'Invalid source type'
|
2014-03-25 10:55:52 +00:00
|
|
|
endif
|
|
|
|
else
|
|
|
|
let prefix = ''
|
|
|
|
endif
|
2017-01-07 16:30:31 +00:00
|
|
|
|
2020-04-05 09:14:05 +00:00
|
|
|
let prefer_tmux = get(g:, 'fzf_prefer_tmux', 0) || has_key(dict, 'tmux')
|
2017-09-28 15:36:09 +00:00
|
|
|
let use_height = has_key(dict, 'down') && !has('gui_running') &&
|
|
|
|
\ !(has('nvim') || s:is_win || has('win32unix') || s:present(dict, 'up', 'left', 'right', 'window')) &&
|
2017-01-07 17:06:39 +00:00
|
|
|
\ executable('tput') && filereadable('/dev/tty')
|
2017-09-30 13:13:43 +00:00
|
|
|
let has_vim8_term = has('terminal') && has('patch-8.0.995')
|
|
|
|
let has_nvim_term = has('nvim-0.2.1') || has('nvim') && !s:is_win
|
|
|
|
let use_term = has_nvim_term ||
|
2017-11-22 04:34:02 +00:00
|
|
|
\ has_vim8_term && !has('win32unix') && (has('gui_running') || s:is_win || !use_height && s:present(dict, 'down', 'up', 'left', 'right', 'window'))
|
2020-04-05 09:14:05 +00:00
|
|
|
let use_tmux = (has_key(dict, 'tmux') || (!use_height && !use_term || prefer_tmux) && !has('win32unix') && s:splittable(dict)) && s:tmux_enabled()
|
2017-01-29 16:47:30 +00:00
|
|
|
if prefer_tmux && use_tmux
|
|
|
|
let use_height = 0
|
|
|
|
let use_term = 0
|
|
|
|
endif
|
2017-01-07 16:30:31 +00:00
|
|
|
if use_height
|
2017-04-30 02:18:56 +00:00
|
|
|
let height = s:calc_size(&lines, dict.down, dict)
|
|
|
|
let optstr .= ' --height='.height
|
2017-02-04 17:07:54 +00:00
|
|
|
elseif use_term
|
2017-01-07 16:30:31 +00:00
|
|
|
let optstr .= ' --no-height'
|
|
|
|
endif
|
2020-10-26 13:33:41 +00:00
|
|
|
let optstr .= s:border_opt(get(dict, 'window', 0))
|
2017-01-29 16:47:30 +00:00
|
|
|
let command = prefix.(use_tmux ? s:fzf_tmux(dict) : fzf_exec).' '.optstr.' > '.temps.result
|
2014-03-25 10:55:52 +00:00
|
|
|
|
2017-01-29 16:47:30 +00:00
|
|
|
if use_term
|
2016-01-11 16:15:36 +00:00
|
|
|
return s:execute_term(dict, command, temps)
|
|
|
|
endif
|
|
|
|
|
2017-01-29 16:47:30 +00:00
|
|
|
let lines = use_tmux ? s:execute_tmux(dict, command, temps)
|
2017-01-07 16:30:31 +00:00
|
|
|
\ : s:execute(dict, command, use_height, temps)
|
2016-07-06 04:31:04 +00:00
|
|
|
call s:callback(dict, lines)
|
|
|
|
return lines
|
2015-04-20 13:42:02 +00:00
|
|
|
finally
|
2019-12-15 09:25:58 +00:00
|
|
|
let [&shell, &shellslash, &shellcmdflag, &shellxquote] = [shell, shellslash, shellcmdflag, shellxquote]
|
2015-04-20 13:42:02 +00:00
|
|
|
endtry
|
2014-03-27 15:58:07 +00:00
|
|
|
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)
|
2020-04-05 09:14:05 +00:00
|
|
|
let size = get(a:dict, 'tmux', '')
|
|
|
|
if empty(size)
|
|
|
|
for o in ['up', 'down', 'left', 'right']
|
|
|
|
if s:present(a:dict, o)
|
|
|
|
let spec = a:dict[o]
|
|
|
|
if (o == 'up' || o == 'down') && spec[0] == '~'
|
|
|
|
let size = '-'.o[0].s:calc_size(&lines, spec, a:dict)
|
|
|
|
else
|
|
|
|
" Legacy boolean option
|
|
|
|
let size = '-'.o[0].(spec == 1 ? '' : substitute(spec, '^\~', '', ''))
|
|
|
|
endif
|
|
|
|
break
|
2015-08-28 09:38:47 +00:00
|
|
|
endif
|
2020-04-05 09:14:05 +00:00
|
|
|
endfor
|
|
|
|
endif
|
2015-03-09 16:41:35 +00:00
|
|
|
return printf('LINES=%d COLUMNS=%d %s %s %s --',
|
2017-05-29 01:06:06 +00:00
|
|
|
\ &lines, &columns, fzf#shellescape(s:fzf_tmux), size, (has_key(a:dict, 'source') ? '' : '-'))
|
2015-03-09 16:41:35 +00:00
|
|
|
endfunction
|
|
|
|
|
2015-04-10 14:23:47 +00:00
|
|
|
function! s:splittable(dict)
|
2016-10-12 14:09:21 +00:00
|
|
|
return s:present(a:dict, 'up', 'down') && &lines > 15 ||
|
|
|
|
\ s:present(a:dict, 'left', 'right') && &columns > 40
|
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')
|
2017-04-22 02:30:51 +00:00
|
|
|
let cwd = s:fzf_getcwd()
|
2018-08-10 09:19:29 +00:00
|
|
|
let w:fzf_pushd = {
|
|
|
|
\ 'command': haslocaldir() ? 'lcd' : (exists(':tcd') && haslocaldir(-1) ? 'tcd' : 'cd'),
|
2019-03-28 01:50:38 +00:00
|
|
|
\ 'origin': cwd,
|
|
|
|
\ 'bufname': bufname('')
|
2018-08-10 09:19:29 +00:00
|
|
|
\ }
|
2016-06-02 13:24:47 +00:00
|
|
|
execute 'lcd' s:escape(a:dict.dir)
|
2018-08-10 09:19:29 +00:00
|
|
|
let cwd = s:fzf_getcwd()
|
|
|
|
let w:fzf_pushd.dir = cwd
|
|
|
|
let a:dict.pushd = w:fzf_pushd
|
|
|
|
return cwd
|
2014-03-27 15:58:07 +00:00
|
|
|
endif
|
2018-08-10 09:19:29 +00:00
|
|
|
return ''
|
2014-03-27 15:58:07 +00:00
|
|
|
endfunction
|
|
|
|
|
2016-07-06 04:31:04 +00:00
|
|
|
augroup fzf_popd
|
|
|
|
autocmd!
|
|
|
|
autocmd WinEnter * call s:dopopd()
|
|
|
|
augroup END
|
|
|
|
|
|
|
|
function! s:dopopd()
|
2018-08-10 09:19:29 +00:00
|
|
|
if !exists('w:fzf_pushd')
|
2016-07-06 04:31:04 +00:00
|
|
|
return
|
2014-03-27 15:58:07 +00:00
|
|
|
endif
|
2018-08-20 06:31:41 +00:00
|
|
|
|
|
|
|
" FIXME: We temporarily change the working directory to 'dir' entry
|
|
|
|
" of options dictionary (set to the current working directory if not given)
|
|
|
|
" before running fzf.
|
|
|
|
"
|
|
|
|
" e.g. call fzf#run({'dir': '/tmp', 'source': 'ls', 'sink': 'e'})
|
|
|
|
"
|
|
|
|
" After processing the sink function, we have to restore the current working
|
|
|
|
" directory. But doing so may not be desirable if the function changed the
|
|
|
|
" working directory on purpose.
|
|
|
|
"
|
|
|
|
" So how can we tell if we should do it or not? A simple heuristic we use
|
|
|
|
" here is that we change directory only if the current working directory
|
|
|
|
" matches 'dir' entry. However, it is possible that the sink function did
|
|
|
|
" change the directory to 'dir'. In that case, the user will have an
|
|
|
|
" unexpected result.
|
2019-03-28 01:50:38 +00:00
|
|
|
if s:fzf_getcwd() ==# w:fzf_pushd.dir && (!&autochdir || w:fzf_pushd.bufname ==# bufname(''))
|
2018-08-20 06:31:41 +00:00
|
|
|
execute w:fzf_pushd.command s:escape(w:fzf_pushd.origin)
|
|
|
|
endif
|
2020-07-26 04:52:50 +00:00
|
|
|
unlet! w:fzf_pushd
|
2014-03-27 15:58:07 +00:00
|
|
|
endfunction
|
|
|
|
|
2015-04-24 03:45:39 +00:00
|
|
|
function! s:xterm_launcher()
|
2019-07-09 02:08:36 +00:00
|
|
|
let fmt = 'xterm -T "[fzf]" -bg "%s" -fg "%s" -geometry %dx%d+%d+%d -e bash -ic %%s'
|
2015-05-13 14:14:03 +00:00
|
|
|
if has('gui_macvim')
|
2015-09-26 12:04:44 +00:00
|
|
|
let fmt .= '&& osascript -e "tell application \"MacVim\" to activate"'
|
2015-05-13 14:14:03 +00:00
|
|
|
endif
|
|
|
|
return printf(fmt,
|
2019-07-09 02:08:36 +00:00
|
|
|
\ escape(synIDattr(hlID("Normal"), "bg"), '#'), escape(synIDattr(hlID("Normal"), "fg"), '#'),
|
2015-04-24 03:45:39 +00:00
|
|
|
\ &columns, &lines/2, getwinposx(), getwinposy())
|
|
|
|
endfunction
|
2015-04-28 14:49:52 +00:00
|
|
|
unlet! s:launcher
|
2017-06-05 04:54:47 +00:00
|
|
|
if s:is_win || has('win32unix')
|
2017-01-04 05:07:01 +00:00
|
|
|
let s:launcher = '%s'
|
2017-01-01 02:48:15 +00:00
|
|
|
else
|
|
|
|
let s:launcher = function('s:xterm_launcher')
|
|
|
|
endif
|
2015-04-24 03:45:39 +00:00
|
|
|
|
2015-09-27 07:26:40 +00:00
|
|
|
function! s:exit_handler(code, command, ...)
|
|
|
|
if a:code == 130
|
|
|
|
return 0
|
2019-11-11 15:47:05 +00:00
|
|
|
elseif has('nvim') && a:code == 129
|
|
|
|
" When deleting the terminal buffer while fzf is still running,
|
|
|
|
" Nvim sends SIGHUP.
|
|
|
|
return 0
|
2015-09-27 07:26:40 +00:00
|
|
|
elseif a:code > 1
|
|
|
|
call s:error('Error running ' . a:command)
|
|
|
|
if !empty(a:000)
|
|
|
|
sleep
|
|
|
|
endif
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
return 1
|
|
|
|
endfunction
|
|
|
|
|
2017-01-07 16:30:31 +00:00
|
|
|
function! s:execute(dict, command, use_height, temps) abort
|
2014-03-27 15:58:07 +00:00
|
|
|
call s:pushd(a:dict)
|
2017-01-07 16:30:31 +00:00
|
|
|
if has('unix') && !a:use_height
|
2017-01-01 02:48:15 +00:00
|
|
|
silent! !clear 2> /dev/null
|
|
|
|
endif
|
2017-05-29 01:06:06 +00:00
|
|
|
let escaped = (a:use_height || s:is_win) ? a:command : escape(substitute(a:command, '\n', '\\n', 'g'), '%#!')
|
2014-06-14 18:04:15 +00:00
|
|
|
if has('gui_running')
|
2015-04-23 03:51:08 +00:00
|
|
|
let Launcher = get(a:dict, 'launcher', get(g:, 'Fzf_launcher', get(g:, 'fzf_launcher', s:launcher)))
|
|
|
|
let fmt = type(Launcher) == 2 ? call(Launcher, []) : Launcher
|
2017-01-01 02:48:15 +00:00
|
|
|
if has('unix')
|
|
|
|
let escaped = "'".substitute(escaped, "'", "'\"'\"'", 'g')."'"
|
|
|
|
endif
|
|
|
|
let command = printf(fmt, escaped)
|
2014-06-14 18:04:15 +00:00
|
|
|
else
|
2017-05-29 01:06:06 +00:00
|
|
|
let command = escaped
|
2014-06-14 18:04:15 +00:00
|
|
|
endif
|
2017-04-22 02:30:51 +00:00
|
|
|
if s:is_win
|
|
|
|
let batchfile = s:fzf_tempname().'.bat'
|
2017-05-31 00:56:01 +00:00
|
|
|
call writefile(s:wrap_cmds(command), batchfile)
|
2017-04-22 02:30:51 +00:00
|
|
|
let command = batchfile
|
2017-05-31 01:03:23 +00:00
|
|
|
let a:temps.batchfile = batchfile
|
2017-04-22 02:30:51 +00:00
|
|
|
if has('nvim')
|
|
|
|
let fzf = {}
|
2017-07-09 17:06:13 +00:00
|
|
|
let fzf.dict = a:dict
|
|
|
|
let fzf.temps = a:temps
|
2017-04-22 02:30:51 +00:00
|
|
|
function! fzf.on_exit(job_id, exit_status, event) dict
|
2018-08-10 09:19:29 +00:00
|
|
|
call s:pushd(self.dict)
|
2017-07-09 17:06:13 +00:00
|
|
|
let lines = s:collect(self.temps)
|
|
|
|
call s:callback(self.dict, lines)
|
2017-04-22 02:30:51 +00:00
|
|
|
endfunction
|
|
|
|
let cmd = 'start /wait cmd /c '.command
|
|
|
|
call jobstart(cmd, fzf)
|
|
|
|
return []
|
|
|
|
endif
|
2017-06-05 04:54:47 +00:00
|
|
|
elseif has('win32unix') && $TERM !=# 'cygwin'
|
|
|
|
let shellscript = s:fzf_tempname()
|
|
|
|
call writefile([command], shellscript)
|
|
|
|
let command = 'cmd.exe /C '.fzf#shellescape('set "TERM=" & start /WAIT sh -c '.shellscript)
|
|
|
|
let a:temps.shellscript = shellscript
|
2017-04-22 02:30:51 +00:00
|
|
|
endif
|
2017-01-07 16:30:31 +00:00
|
|
|
if a:use_height
|
2017-01-14 19:32:39 +00:00
|
|
|
let stdin = has_key(a:dict, 'source') ? '' : '< /dev/tty'
|
2017-01-21 18:19:50 +00:00
|
|
|
call system(printf('tput cup %d > /dev/tty; tput cnorm > /dev/tty; %s %s 2> /dev/tty', &lines, command, stdin))
|
2017-01-07 16:30:31 +00:00
|
|
|
else
|
2017-02-19 11:53:12 +00:00
|
|
|
execute 'silent !'.command
|
2017-01-07 16:30:31 +00:00
|
|
|
endif
|
2016-07-27 16:41:11 +00:00
|
|
|
let exit_status = v:shell_error
|
2014-03-27 15:58:07 +00:00
|
|
|
redraw!
|
2016-07-27 16:41:11 +00:00
|
|
|
return s:exit_handler(exit_status, command) ? s:collect(a:temps) : []
|
2014-03-27 15:58:07 +00:00
|
|
|
endfunction
|
|
|
|
|
2016-02-23 05:36:36 +00:00
|
|
|
function! s:execute_tmux(dict, command, temps) abort
|
2015-03-09 16:41:35 +00:00
|
|
|
let command = a:command
|
2018-08-10 09:19:29 +00:00
|
|
|
let cwd = s:pushd(a:dict)
|
|
|
|
if len(cwd)
|
2015-03-09 16:41:35 +00:00
|
|
|
" -c '#{pane_current_path}' is only available on tmux 1.9 or above
|
2018-08-10 09:19:29 +00:00
|
|
|
let command = join(['cd', fzf#shellescape(cwd), '&&', 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)
|
2016-07-27 16:41:11 +00:00
|
|
|
let exit_status = v:shell_error
|
2015-04-23 10:29:01 +00:00
|
|
|
redraw!
|
2016-07-27 16:41:11 +00:00
|
|
|
return s:exit_handler(exit_status, command) ? s:collect(a:temps) : []
|
2014-03-27 15:58:07 +00:00
|
|
|
endfunction
|
|
|
|
|
2015-08-28 09:38:47 +00:00
|
|
|
function! s:calc_size(max, val, dict)
|
2016-08-23 16:15:35 +00:00
|
|
|
let val = substitute(a:val, '^\~', '', '')
|
|
|
|
if val =~ '%$'
|
|
|
|
let size = a:max * str2nr(val[:-2]) / 100
|
2015-04-10 14:23:47 +00:00
|
|
|
else
|
2016-08-23 16:15:35 +00:00
|
|
|
let size = min([a:max, str2nr(val)])
|
2015-08-28 09:38:47 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
let srcsz = -1
|
|
|
|
if type(get(a:dict, 'source', 0)) == type([])
|
|
|
|
let srcsz = len(a:dict.source)
|
2015-04-10 14:23:47 +00:00
|
|
|
endif
|
2015-08-28 09:38:47 +00:00
|
|
|
|
2019-03-26 07:40:40 +00:00
|
|
|
let opts = $FZF_DEFAULT_OPTS.' '.s:evaluate_opts(get(a:dict, 'options', ''))
|
2020-06-29 13:26:13 +00:00
|
|
|
if opts =~ 'preview'
|
|
|
|
return size
|
|
|
|
endif
|
2020-03-03 14:48:12 +00:00
|
|
|
let margin = match(opts, '--inline-info\|--info[^-]\{-}inline') > match(opts, '--no-inline-info\|--info[^-]\{-}\(default\|hidden\)') ? 1 : 2
|
2019-03-26 07:40:40 +00:00
|
|
|
let margin += stridx(opts, '--border') > stridx(opts, '--no-border') ? 2 : 0
|
2020-03-03 14:48:12 +00:00
|
|
|
if stridx(opts, '--header') > stridx(opts, '--no-header')
|
|
|
|
let margin += len(split(opts, "\n"))
|
|
|
|
endif
|
2015-08-28 09:38:47 +00:00
|
|
|
return srcsz >= 0 ? min([srcsz + margin, size]) : size
|
2015-04-10 14:23:47 +00:00
|
|
|
endfunction
|
|
|
|
|
2015-06-21 12:45:10 +00:00
|
|
|
function! s:getpos()
|
2020-03-29 17:06:06 +00:00
|
|
|
return {'tab': tabpagenr(), 'win': winnr(), 'winid': win_getid(), 'cnt': winnr('$'), 'tcnt': tabpagenr('$')}
|
2015-06-21 12:45:10 +00:00
|
|
|
endfunction
|
|
|
|
|
2020-10-26 13:33:41 +00:00
|
|
|
function! s:border_opt(window)
|
|
|
|
if type(a:window) != type({})
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Border style
|
|
|
|
let style = tolower(get(a:window, 'border', 'rounded'))
|
|
|
|
if !has_key(a:window, 'border') && !get(a:window, 'rounded', 1)
|
|
|
|
let style = 'sharp'
|
|
|
|
endif
|
2020-10-28 16:32:41 +00:00
|
|
|
if style == 'none' || style == 'no'
|
2020-10-26 14:40:58 +00:00
|
|
|
return ''
|
|
|
|
endif
|
2020-10-26 13:33:41 +00:00
|
|
|
|
2020-10-26 16:01:58 +00:00
|
|
|
" For --border styles, we need fzf 0.24.0 or above
|
|
|
|
call fzf#exec('0.24.0')
|
2020-10-26 13:33:41 +00:00
|
|
|
let opt = ' --border=' . style
|
|
|
|
if has_key(a:window, 'highlight')
|
|
|
|
let color = s:get_color('fg', a:window.highlight)
|
|
|
|
if len(color)
|
|
|
|
let opt .= ' --color=border:' . color
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
return opt
|
|
|
|
endfunction
|
|
|
|
|
2015-04-10 14:23:47 +00:00
|
|
|
function! s:split(dict)
|
|
|
|
let directions = {
|
2015-04-11 14:42:01 +00:00
|
|
|
\ 'up': ['topleft', 'resize', &lines],
|
|
|
|
\ 'down': ['botright', 'resize', &lines],
|
|
|
|
\ 'left': ['vertical topleft', 'vertical resize', &columns],
|
|
|
|
\ 'right': ['vertical botright', 'vertical resize', &columns] }
|
2016-04-27 16:25:24 +00:00
|
|
|
let ppos = s:getpos()
|
2020-05-15 06:25:33 +00:00
|
|
|
let is_popup = 0
|
2015-04-10 14:23:47 +00:00
|
|
|
try
|
|
|
|
if s:present(a:dict, 'window')
|
2020-02-03 15:35:57 +00:00
|
|
|
if type(a:dict.window) == type({})
|
2020-09-12 12:08:05 +00:00
|
|
|
if !s:popup_support()
|
2020-06-21 01:34:43 +00:00
|
|
|
throw 'Nvim 0.4+ or Vim 8.2.191+ with popupwin feature is required for pop-up window'
|
2020-03-01 11:57:35 +00:00
|
|
|
end
|
2020-02-03 15:35:57 +00:00
|
|
|
call s:popup(a:dict.window)
|
2020-05-15 06:25:33 +00:00
|
|
|
let is_popup = 1
|
2020-02-03 15:35:57 +00:00
|
|
|
else
|
|
|
|
execute 'keepalt' a:dict.window
|
|
|
|
endif
|
2016-10-12 14:09:21 +00:00
|
|
|
elseif !s:splittable(a:dict)
|
2016-03-06 04:56:29 +00:00
|
|
|
execute (tabpagenr()-1).'tabnew'
|
2016-10-12 14:09:21 +00:00
|
|
|
else
|
|
|
|
for [dir, triple] in items(directions)
|
|
|
|
let val = get(a:dict, dir, '')
|
|
|
|
if !empty(val)
|
|
|
|
let [cmd, resz, max] = triple
|
|
|
|
if (dir == 'up' || dir == 'down') && val[0] == '~'
|
|
|
|
let sz = s:calc_size(max, val, a:dict)
|
|
|
|
else
|
|
|
|
let sz = s:calc_size(max, val, {})
|
|
|
|
endif
|
|
|
|
execute cmd sz.'new'
|
|
|
|
execute resz sz
|
2020-05-15 06:25:33 +00:00
|
|
|
return [ppos, {}, is_popup]
|
2016-10-12 14:09:21 +00:00
|
|
|
endif
|
|
|
|
endfor
|
2015-04-10 14:23:47 +00:00
|
|
|
endif
|
2020-05-17 14:28:23 +00:00
|
|
|
return [ppos, is_popup ? {} : { '&l:wfw': &l:wfw, '&l:wfh': &l:wfh }, is_popup]
|
2015-04-10 14:23:47 +00:00
|
|
|
finally
|
2020-05-17 14:28:23 +00:00
|
|
|
if !is_popup
|
|
|
|
setlocal winfixwidth winfixheight
|
|
|
|
endif
|
2015-04-10 14:23:47 +00:00
|
|
|
endtry
|
|
|
|
endfunction
|
|
|
|
|
2016-02-23 05:36:36 +00:00
|
|
|
function! s:execute_term(dict, command, temps) abort
|
2016-08-25 07:08:27 +00:00
|
|
|
let winrest = winrestcmd()
|
2016-12-11 13:32:40 +00:00
|
|
|
let pbuf = bufnr('')
|
2020-05-15 06:25:33 +00:00
|
|
|
let [ppos, winopts, is_popup] = s:split(a:dict)
|
2017-08-30 09:58:28 +00:00
|
|
|
call s:use_sh()
|
2017-01-31 16:06:52 +00:00
|
|
|
let b:fzf = a:dict
|
2016-12-11 13:32:40 +00:00
|
|
|
let fzf = { 'buf': bufnr(''), 'pbuf': pbuf, 'ppos': ppos, 'dict': a:dict, 'temps': a:temps,
|
2016-08-25 07:08:27 +00:00
|
|
|
\ 'winopts': winopts, 'winrest': winrest, 'lines': &lines,
|
|
|
|
\ 'columns': &columns, 'command': a:command }
|
2016-04-27 16:25:24 +00:00
|
|
|
function! fzf.switch_back(inplace)
|
|
|
|
if a:inplace && bufnr('') == self.buf
|
2016-12-18 17:51:19 +00:00
|
|
|
if bufexists(self.pbuf)
|
|
|
|
execute 'keepalt b' self.pbuf
|
|
|
|
endif
|
2016-04-27 16:25:24 +00:00
|
|
|
" No other listed buffer
|
|
|
|
if bufnr('') == self.buf
|
|
|
|
enew
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
2017-08-27 04:55:14 +00:00
|
|
|
function! fzf.on_exit(id, code, ...)
|
2016-04-27 16:25:24 +00:00
|
|
|
if s:getpos() == self.ppos " {'window': 'enew'}
|
2016-04-20 15:33:30 +00:00
|
|
|
for [opt, val] in items(self.winopts)
|
|
|
|
execute 'let' opt '=' val
|
|
|
|
endfor
|
2016-04-27 16:25:24 +00:00
|
|
|
call self.switch_back(1)
|
2016-04-20 15:33:30 +00:00
|
|
|
else
|
2015-06-21 12:45:10 +00:00
|
|
|
if bufnr('') == self.buf
|
|
|
|
" We use close instead of bd! since Vim does not close the split when
|
|
|
|
" there's no other listed buffer (nvim +'set nobuflisted')
|
|
|
|
close
|
|
|
|
endif
|
2020-03-29 17:06:06 +00:00
|
|
|
silent! execute 'tabnext' self.ppos.tab
|
|
|
|
silent! execute self.ppos.win.'wincmd w'
|
2015-04-11 14:42:01 +00:00
|
|
|
endif
|
2015-09-20 05:09:54 +00:00
|
|
|
|
2016-08-01 17:25:02 +00:00
|
|
|
if bufexists(self.buf)
|
|
|
|
execute 'bd!' self.buf
|
|
|
|
endif
|
|
|
|
|
2016-08-28 10:26:47 +00:00
|
|
|
if &lines == self.lines && &columns == self.columns && s:getpos() == self.ppos
|
2016-08-25 07:08:27 +00:00
|
|
|
execute self.winrest
|
|
|
|
endif
|
|
|
|
|
2016-08-01 18:30:17 +00:00
|
|
|
if !s:exit_handler(a:code, self.command, 1)
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2015-04-10 14:23:47 +00:00
|
|
|
call s:pushd(self.dict)
|
2016-07-06 04:31:04 +00:00
|
|
|
let lines = s:collect(self.temps)
|
|
|
|
call s:callback(self.dict, lines)
|
|
|
|
call self.switch_back(s:getpos() == self.ppos)
|
2015-04-10 14:23:47 +00:00
|
|
|
endfunction
|
|
|
|
|
2016-07-06 04:31:04 +00:00
|
|
|
try
|
2018-08-10 09:19:29 +00:00
|
|
|
call s:pushd(a:dict)
|
2017-08-22 01:54:33 +00:00
|
|
|
if s:is_win
|
|
|
|
let fzf.temps.batchfile = s:fzf_tempname().'.bat'
|
|
|
|
call writefile(s:wrap_cmds(a:command), fzf.temps.batchfile)
|
|
|
|
let command = fzf.temps.batchfile
|
|
|
|
else
|
|
|
|
let command = a:command
|
|
|
|
endif
|
2017-08-27 04:55:14 +00:00
|
|
|
let command .= s:term_marker
|
|
|
|
if has('nvim')
|
|
|
|
call termopen(command, fzf)
|
|
|
|
else
|
2020-05-15 06:25:33 +00:00
|
|
|
let term_opts = {'exit_cb': function(fzf.on_exit)}
|
|
|
|
if is_popup
|
|
|
|
let term_opts.hidden = 1
|
|
|
|
else
|
|
|
|
let term_opts.curwin = 1
|
|
|
|
endif
|
|
|
|
let fzf.buf = term_start([&shell, &shellcmdflag, command], term_opts)
|
|
|
|
if is_popup && exists('#TerminalWinOpen')
|
|
|
|
doautocmd <nomodeline> TerminalWinOpen
|
|
|
|
endif
|
|
|
|
if !has('patch-8.0.1261') && !s:is_win
|
2017-12-05 14:50:55 +00:00
|
|
|
call term_wait(fzf.buf, 20)
|
2017-09-28 15:36:09 +00:00
|
|
|
endif
|
2017-08-27 04:55:14 +00:00
|
|
|
endif
|
2016-07-06 04:31:04 +00:00
|
|
|
finally
|
2018-08-10 09:19:29 +00:00
|
|
|
call s:dopopd()
|
2016-07-06 04:31:04 +00:00
|
|
|
endtry
|
2017-07-23 04:12:15 +00:00
|
|
|
setlocal nospell bufhidden=wipe nobuflisted nonumber
|
2015-10-30 15:18:23 +00:00
|
|
|
setf fzf
|
2015-04-10 14:23:47 +00:00
|
|
|
startinsert
|
|
|
|
return []
|
|
|
|
endfunction
|
|
|
|
|
2016-07-06 04:31:04 +00:00
|
|
|
function! s:collect(temps) abort
|
|
|
|
try
|
|
|
|
return filereadable(a:temps.result) ? readfile(a:temps.result) : []
|
|
|
|
finally
|
|
|
|
for tf in values(a:temps)
|
|
|
|
silent! call delete(tf)
|
|
|
|
endfor
|
|
|
|
endtry
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:callback(dict, lines) abort
|
2018-08-20 06:31:41 +00:00
|
|
|
let popd = has_key(a:dict, 'pushd')
|
2016-07-06 04:31:04 +00:00
|
|
|
if popd
|
2018-08-10 09:19:29 +00:00
|
|
|
let w:fzf_pushd = a:dict.pushd
|
2016-07-06 04:31:04 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
try
|
2014-03-27 15:58:07 +00:00
|
|
|
if has_key(a:dict, 'sink')
|
2016-07-06 04:31:04 +00:00
|
|
|
for line in a: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
|
2015-04-10 14:23:47 +00:00
|
|
|
if has_key(a:dict, 'sink*')
|
2016-07-06 04:31:04 +00:00
|
|
|
call a:dict['sink*'](a:lines)
|
2015-04-10 14:23:47 +00:00
|
|
|
endif
|
2016-07-06 04:31:04 +00:00
|
|
|
catch
|
|
|
|
if stridx(v:exception, ':E325:') < 0
|
|
|
|
echoerr v:exception
|
|
|
|
endif
|
|
|
|
endtry
|
2014-03-27 15:58:07 +00:00
|
|
|
|
2016-07-06 04:31:04 +00:00
|
|
|
" We may have opened a new window or tab
|
|
|
|
if popd
|
2018-08-10 09:19:29 +00:00
|
|
|
let w:fzf_pushd = a:dict.pushd
|
2016-07-06 04:31:04 +00:00
|
|
|
call s:dopopd()
|
2015-04-23 10:29:42 +00:00
|
|
|
endif
|
2013-10-23 01:26:55 +00:00
|
|
|
endfunction
|
|
|
|
|
2020-02-03 15:35:57 +00:00
|
|
|
if has('nvim')
|
|
|
|
function s:create_popup(hl, opts) abort
|
|
|
|
let buf = nvim_create_buf(v:false, v:true)
|
|
|
|
let opts = extend({'relative': 'editor', 'style': 'minimal'}, a:opts)
|
|
|
|
let border = has_key(opts, 'border') ? remove(opts, 'border') : []
|
|
|
|
let win = nvim_open_win(buf, v:true, opts)
|
|
|
|
call setwinvar(win, '&winhighlight', 'NormalFloat:'..a:hl)
|
|
|
|
call setwinvar(win, '&colorcolumn', '')
|
|
|
|
if !empty(border)
|
|
|
|
call nvim_buf_set_lines(buf, 0, -1, v:true, border)
|
|
|
|
endif
|
|
|
|
return buf
|
|
|
|
endfunction
|
|
|
|
else
|
|
|
|
function! s:create_popup(hl, opts) abort
|
2020-05-15 06:25:33 +00:00
|
|
|
let s:popup_create = {buf -> popup_create(buf, #{
|
2020-02-03 15:35:57 +00:00
|
|
|
\ line: a:opts.row,
|
|
|
|
\ col: a:opts.col,
|
|
|
|
\ minwidth: a:opts.width,
|
2020-10-31 13:27:58 +00:00
|
|
|
\ maxwidth: a:opts.width,
|
2020-02-03 15:35:57 +00:00
|
|
|
\ minheight: a:opts.height,
|
2020-10-31 13:27:58 +00:00
|
|
|
\ maxheight: a:opts.height,
|
2020-10-31 13:21:06 +00:00
|
|
|
\ zindex: 1000,
|
2020-05-15 06:25:33 +00:00
|
|
|
\ })}
|
2020-10-31 13:21:06 +00:00
|
|
|
autocmd TerminalOpen * ++once call s:popup_create(str2nr(expand('<abuf>')))
|
2020-02-03 15:35:57 +00:00
|
|
|
endfunction
|
|
|
|
endif
|
|
|
|
|
|
|
|
function! s:popup(opts) abort
|
|
|
|
" Size and position
|
2020-09-06 13:12:51 +00:00
|
|
|
let width = min([max([8, a:opts.width > 1 ? a:opts.width : float2nr(&columns * a:opts.width)]), &columns])
|
|
|
|
let height = min([max([4, a:opts.height > 1 ? a:opts.height : float2nr(&lines * a:opts.height)]), &lines - has('nvim')])
|
2020-02-06 01:38:37 +00:00
|
|
|
let row = float2nr(get(a:opts, 'yoffset', 0.5) * (&lines - height))
|
|
|
|
let col = float2nr(get(a:opts, 'xoffset', 0.5) * (&columns - width))
|
|
|
|
|
|
|
|
" Managing the differences
|
|
|
|
let row = min([max([0, row]), &lines - has('nvim') - height])
|
|
|
|
let col = min([max([0, col]), &columns - width])
|
|
|
|
let row += !has('nvim')
|
|
|
|
let col += !has('nvim')
|
2020-02-03 15:35:57 +00:00
|
|
|
|
|
|
|
call s:create_popup('Normal', {
|
2020-10-26 13:33:41 +00:00
|
|
|
\ 'row': row, 'col': col, 'width': width, 'height': height
|
2020-02-03 15:35:57 +00:00
|
|
|
\ })
|
|
|
|
endfunction
|
|
|
|
|
2015-04-15 13:49:45 +00:00
|
|
|
let s:default_action = {
|
2015-08-15 14:53:11 +00:00
|
|
|
\ 'ctrl-t': 'tab split',
|
2015-04-15 13:49:45 +00:00
|
|
|
\ 'ctrl-x': 'split',
|
|
|
|
\ 'ctrl-v': 'vsplit' }
|
|
|
|
|
2016-12-02 16:08:09 +00:00
|
|
|
function! s:shortpath()
|
2017-09-07 02:03:26 +00:00
|
|
|
let short = fnamemodify(getcwd(), ':~:.')
|
|
|
|
if !has('win32unix')
|
|
|
|
let short = pathshorten(short)
|
|
|
|
endif
|
2017-04-22 02:30:51 +00:00
|
|
|
let slash = (s:is_win && !&shellslash) ? '\' : '/'
|
2017-07-30 00:38:58 +00:00
|
|
|
return empty(short) ? '~'.slash : short . (short =~ escape(slash, '\').'$' ? '' : slash)
|
2016-12-02 16:08:09 +00:00
|
|
|
endfunction
|
|
|
|
|
2014-03-27 15:58:07 +00:00
|
|
|
function! s:cmd(bang, ...) abort
|
2016-07-25 17:35:40 +00:00
|
|
|
let args = copy(a:000)
|
2017-04-22 02:30:51 +00:00
|
|
|
let opts = { 'options': ['--multi'] }
|
2016-07-25 17:35:40 +00:00
|
|
|
if len(args) && isdirectory(expand(args[-1]))
|
2017-01-01 04:11:06 +00:00
|
|
|
let opts.dir = substitute(substitute(remove(args, -1), '\\\(["'']\)', '\1', 'g'), '[/\\]*$', '/', '')
|
2017-04-22 02:30:51 +00:00
|
|
|
if s:is_win && !&shellslash
|
|
|
|
let opts.dir = substitute(opts.dir, '/', '\\', 'g')
|
|
|
|
endif
|
|
|
|
let prompt = opts.dir
|
2016-10-03 15:20:36 +00:00
|
|
|
else
|
2017-04-22 02:30:51 +00:00
|
|
|
let prompt = s:shortpath()
|
2014-03-25 10:55:52 +00:00
|
|
|
endif
|
2017-09-07 02:01:40 +00:00
|
|
|
let prompt = strwidth(prompt) < &columns - 20 ? prompt : '> '
|
2017-04-22 02:30:51 +00:00
|
|
|
call extend(opts.options, ['--prompt', prompt])
|
|
|
|
call extend(opts.options, args)
|
2016-10-03 15:20:36 +00:00
|
|
|
call fzf#run(fzf#wrap('FZF', opts, a:bang))
|
2014-03-25 10:55:52 +00:00
|
|
|
endfunction
|
|
|
|
|
2015-04-14 01:46:20 +00:00
|
|
|
command! -nargs=* -complete=dir -bang FZF call s:cmd(<bang>0, <f-args>)
|
2014-03-25 10:55:52 +00:00
|
|
|
|
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|