mirror of
https://github.com/junegunn/fzf.vim.git
synced 2026-01-09 04:52:30 +08:00
485 lines
14 KiB
VimL
485 lines
14 KiB
VimL
" Copyright (c) 2015 Junegunn Choi
|
|
"
|
|
" 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.
|
|
|
|
let s:cpo_save = &cpo
|
|
set cpo&vim
|
|
|
|
" ------------------------------------------------------------------
|
|
" Common
|
|
" ------------------------------------------------------------------
|
|
function! s:strip(str)
|
|
return substitute(a:str, '^\s*\|\s*$', '', 'g')
|
|
endfunction
|
|
|
|
function! s:escape(path)
|
|
return escape(a:path, ' %#''"\')
|
|
endfunction
|
|
|
|
function! s:ansi(str, col, bold)
|
|
return printf("\x1b[%s%sm%s\x1b[m", a:col, a:bold ? ';1' : '', a:str)
|
|
endfunction
|
|
|
|
for [s:c, s:a] in items({'red': 31, 'green': 32, 'yellow': 33, 'blue': 34, 'magenta': 35})
|
|
execute "function! s:".s:c."(str, ...)\n"
|
|
\ " return s:ansi(a:str, ".s:a.", get(a:, 1, 0))\n"
|
|
\ "endfunction"
|
|
endfor
|
|
|
|
function! s:buflisted()
|
|
return filter(range(1, bufnr('$')), 'buflisted(v:val)')
|
|
endfunction
|
|
|
|
let s:default_window = {'down': '40%'}
|
|
|
|
function! s:fzf(opts, bang)
|
|
return fzf#run(extend(a:opts, a:bang ? {} : get(g:, 'fzf_window', s:default_window)))
|
|
endfunction
|
|
|
|
let s:default_action = {
|
|
\ 'ctrl-t': 'tab split',
|
|
\ 'ctrl-x': 'split',
|
|
\ 'ctrl-v': 'vsplit' }
|
|
|
|
function! s:expect()
|
|
return ' --expect='.join(keys(get(g:, 'fzf_action', s:default_action)), ',')
|
|
endfunction
|
|
|
|
function! s:common_sink(lines) abort
|
|
if len(a:lines) < 2
|
|
return
|
|
endif
|
|
let key = remove(a:lines, 0)
|
|
let cmd = get(get(g:, 'fzf_action', s:default_action), key, 'e')
|
|
try
|
|
let autochdir = &autochdir
|
|
set noautochdir
|
|
for item in a:lines
|
|
execute cmd s:escape(item)
|
|
endfor
|
|
finally
|
|
let &autochdir = autochdir
|
|
endtry
|
|
endfunction
|
|
|
|
function! s:align_lists(lists)
|
|
let maxes = {}
|
|
for list in a:lists
|
|
let i = 0
|
|
while i < len(list)
|
|
let maxes[i] = max([get(maxes, i, 0), len(list[i])])
|
|
let i += 1
|
|
endwhile
|
|
endfor
|
|
for list in a:lists
|
|
call map(list, "printf('%-'.maxes[v:key].'s', v:val)")
|
|
endfor
|
|
return a:lists
|
|
endfunction
|
|
|
|
function! s:warn(message)
|
|
echohl WarningMsg
|
|
echom a:message
|
|
echohl None
|
|
endfunction
|
|
|
|
" ------------------------------------------------------------------
|
|
" Files
|
|
" ------------------------------------------------------------------
|
|
function! s:files(dir, bang)
|
|
let args = {
|
|
\ 'sink*': function('s:common_sink'),
|
|
\ 'options': '-m'.s:expect()
|
|
\}
|
|
|
|
if !empty(a:dir)
|
|
if !isdirectory(expand(a:dir))
|
|
call s:warn('Invalid directory')
|
|
return
|
|
endif
|
|
let dir = substitute(a:dir, '/*$', '/', '')
|
|
let args.dir = dir
|
|
let args.options .= ' --prompt '.shellescape(dir)
|
|
else
|
|
let args.options .= ' --prompt '.shellescape(pathshorten(getcwd())).'/'
|
|
endif
|
|
|
|
call s:fzf(args, a:bang)
|
|
endfunction
|
|
|
|
command! -bang -nargs=? -complete=dir Files call s:files(<q-args>, <bang>0)
|
|
|
|
" ------------------------------------------------------------------
|
|
" Lines
|
|
" ------------------------------------------------------------------
|
|
function! s:line_handler(lines)
|
|
if len(a:lines) < 2
|
|
return
|
|
endif
|
|
let cmd = get(get(g:, 'fzf_action', s:default_action), a:lines[0], '')
|
|
if !empty(cmd)
|
|
execute 'silent' cmd
|
|
endif
|
|
|
|
let keys = split(a:lines[1], '\t')
|
|
execute 'buffer' keys[0][1:-2]
|
|
execute keys[1][0:-2]
|
|
normal! ^zz
|
|
endfunction
|
|
|
|
function! s:buffer_lines()
|
|
let res = []
|
|
for b in s:buflisted()
|
|
call extend(res,
|
|
\ map(getbufline(b, 0, "$"),
|
|
\ 'printf("[%s]\t%s:\t%s", s:blue(b, 1), s:yellow(v:key + 1, 1), v:val)'))
|
|
endfor
|
|
return res
|
|
endfunction
|
|
|
|
command! -bang Lines call s:fzf({
|
|
\ 'source': <sid>buffer_lines(),
|
|
\ 'sink*': function('<sid>line_handler'),
|
|
\ 'options': '+m --prompt "Lines> " --ansi --extended --nth=3..'.s:expect()
|
|
\}, <bang>0)
|
|
|
|
" ------------------------------------------------------------------
|
|
" Colors
|
|
" ------------------------------------------------------------------
|
|
command! -bang Colors call s:fzf({
|
|
\ 'source': map(split(globpath(&rtp, "colors/*.vim"), "\n"),
|
|
\ "substitute(fnamemodify(v:val, ':t'), '\\..\\{-}$', '', '')"),
|
|
\ 'sink': 'colo',
|
|
\ 'options': '+m --prompt="Colors> "'
|
|
\}, <bang>0)
|
|
|
|
" ------------------------------------------------------------------
|
|
" Locate
|
|
" ------------------------------------------------------------------
|
|
command! -bang -nargs=1 Locate call s:fzf({
|
|
\ 'source': 'locate <q-args>',
|
|
\ 'sink*': function('<sid>common_sink'),
|
|
\ 'options': '-m --prompt "Locate> "' . s:expect()
|
|
\}, <bang>0)
|
|
|
|
" ------------------------------------------------------------------
|
|
" History
|
|
" ------------------------------------------------------------------
|
|
function! s:all_files()
|
|
return extend(
|
|
\ filter(reverse(copy(v:oldfiles)),
|
|
\ "v:val !~ 'fugitive:\\|NERD_tree\\|^/tmp/\\|.git/'"),
|
|
\ filter(map(s:buflisted(), 'bufname(v:val)'), '!empty(v:val)'))
|
|
endfunction
|
|
|
|
command! -bang History call s:fzf({
|
|
\ 'source': reverse(s:all_files()),
|
|
\ 'sink*': function('<sid>common_sink'),
|
|
\ 'options': '--prompt "Hist> " -m' . s:expect(),
|
|
\}, <bang>0)
|
|
|
|
" ------------------------------------------------------------------
|
|
" Buffers
|
|
" ------------------------------------------------------------------
|
|
function! s:bufopen(lines)
|
|
if len(a:lines) < 2
|
|
return
|
|
endif
|
|
let cmd = get(get(g:, 'fzf_action', s:default_action), a:lines[0], '')
|
|
if !empty(cmd)
|
|
execute 'silent' cmd
|
|
endif
|
|
execute 'buffer' matchstr(a:lines[1], '\[\zs[0-9]*\ze\]')
|
|
endfunction
|
|
|
|
function! s:format_buffer(b)
|
|
let name = bufname(a:b)
|
|
let name = empty(name) ? '[No Name]' : name
|
|
let flag = a:b == bufnr('') ? s:blue('%') :
|
|
\ (a:b == bufnr('#') ? s:magenta('#') : ' ')
|
|
let modified = getbufvar(a:b, '&modified') ? s:red(' [+]') : ''
|
|
let readonly = getbufvar(a:b, '&modifiable') ? '' : s:green(' [RO]')
|
|
let extra = join(filter([modified, readonly], '!empty(v:val)'), '')
|
|
return s:strip(printf("[%s] %s\t%s\t%s", s:yellow(a:b, 1), flag, name, extra))
|
|
endfunction
|
|
|
|
function! s:bufselect(bang)
|
|
let bufs = map(s:buflisted(), 's:format_buffer(v:val)')
|
|
let height = min([len(bufs), &lines * 4 / 10])
|
|
|
|
call fzf#run(extend({
|
|
\ 'source': reverse(bufs),
|
|
\ 'sink*': function('s:bufopen'),
|
|
\ 'options': '+m --ansi -d "\t" -n 2,1..2 --prompt="Buf> "'.s:expect(),
|
|
\}, a:bang ? {} : {'down': height + 2}))
|
|
endfunction
|
|
|
|
command! -bang Buffers call s:bufselect(<bang>0)
|
|
|
|
" ------------------------------------------------------------------
|
|
" Ag
|
|
" ------------------------------------------------------------------
|
|
function! s:ag_to_qf(line)
|
|
let parts = split(a:line, ':')
|
|
return {'filename': parts[0], 'lnum': parts[1], 'col': parts[2],
|
|
\ 'text': join(parts[3:], ':')}
|
|
endfunction
|
|
|
|
function! s:ag_handler(lines)
|
|
if len(a:lines) < 2
|
|
return
|
|
endif
|
|
|
|
let cmd = get(get(g:, 'fzf_action', s:default_action), a:lines[0], 'e')
|
|
let list = map(a:lines[1:], 's:ag_to_qf(v:val)')
|
|
|
|
let first = list[0]
|
|
execute cmd s:escape(first.filename)
|
|
execute first.lnum
|
|
execute 'normal!' first.col.'|zz'
|
|
|
|
if len(list) > 1
|
|
call setqflist(list)
|
|
copen
|
|
wincmd p
|
|
endif
|
|
endfunction
|
|
|
|
command! -bang -nargs=* Ag call s:fzf({
|
|
\ 'source': printf('ag --nogroup --column --color "%s"',
|
|
\ escape(empty(<q-args>) ? '^(?=.)' : <q-args>, '"\')),
|
|
\ 'sink*': function('<sid>ag_handler'),
|
|
\ 'options': '--ansi --delimiter : --nth 4.. --prompt "Ag> " '.
|
|
\ '--multi --bind ctrl-a:select-all,ctrl-d:deselect-all '.
|
|
\ '--color hl:68,hl+:110'.s:expect()}, <bang>0)
|
|
|
|
" ------------------------------------------------------------------
|
|
" BTags
|
|
" ------------------------------------------------------------------
|
|
function! s:btags_source()
|
|
let lines = map(split(system(printf(
|
|
\ 'ctags -f - --sort=no --excmd=number --language-force=%s %s',
|
|
\ &filetype, expand('%:S'))), "\n"), 'split(v:val, "\t")')
|
|
if v:shell_error
|
|
throw 'failed to extract tags'
|
|
endif
|
|
return map(s:align_lists(lines), 'join(v:val, "\t")')
|
|
endfunction
|
|
|
|
function! s:btags_sink(lines)
|
|
if len(a:lines) < 2
|
|
return
|
|
endif
|
|
let cmd = get(get(g:, 'fzf_action', s:default_action), a:lines[0], '')
|
|
if !empty(cmd)
|
|
execute 'silent' cmd '%'
|
|
endif
|
|
execute split(a:lines[1], "\t")[2]
|
|
endfunction
|
|
|
|
function! s:btags(bang)
|
|
try
|
|
call s:fzf({
|
|
\ 'source': s:btags_source(),
|
|
\ 'options': '+m -d "\t" --with-nth 1,4.. -n 1 --prompt "BTags> "'.s:expect(),
|
|
\ 'sink*': function('s:btags_sink')}, a:bang)
|
|
catch
|
|
call s:warn(v:exception)
|
|
endtry
|
|
endfunction
|
|
|
|
command! -bang BTags call s:btags(<bang>0)
|
|
|
|
" ------------------------------------------------------------------
|
|
" Tags
|
|
" ------------------------------------------------------------------
|
|
function! s:tags_sink(lines)
|
|
if len(a:lines) < 2
|
|
return
|
|
endif
|
|
let cmd = get(get(g:, 'fzf_action', s:default_action), a:lines[0], 'e')
|
|
let parts = split(a:lines[1], '\t\zs')
|
|
let excmd = matchstr(parts[2:], '^.*\ze;"\t')
|
|
execute cmd s:escape(parts[1][:-2])
|
|
let [magic, &magic] = [&magic, 0]
|
|
execute excmd
|
|
let &magic = magic
|
|
endfunction
|
|
|
|
function! s:tags(bang)
|
|
if empty(tagfiles())
|
|
call s:warn('Preparing tags')
|
|
call system('ctags -R')
|
|
endif
|
|
|
|
let tagfile = tagfiles()[0]
|
|
call s:fzf({
|
|
\ 'source': 'cat '.shellescape(tagfile).
|
|
\ '| grep -v "^!"',
|
|
\ 'dir': fnamemodify(tagfile, ':h'),
|
|
\ 'options': '+m -d "\t" --with-nth 1,4.. -n 1 --prompt "Tags> "'.s:expect(),
|
|
\ 'sink*': function('s:tags_sink')}, a:bang)
|
|
endfunction
|
|
|
|
command! -bang Tags call s:tags(<bang>0)
|
|
|
|
" ------------------------------------------------------------------
|
|
" Snippets (UltiSnips)
|
|
" ------------------------------------------------------------------
|
|
function! s:inject_snippet(line)
|
|
let snip = split(a:line, "\t")[0]
|
|
execute 'normal! a'.s:strip(snip)."\<c-r>=UltiSnips#ExpandSnippet()\<cr>"
|
|
endfunction
|
|
|
|
function! s:snippets(bang)
|
|
if !exists(':UltiSnipsEdit')
|
|
return s:warn('UltiSnips not found')
|
|
endif
|
|
let list = UltiSnips#SnippetsInCurrentScope()
|
|
if empty(list)
|
|
return s:warn('No snippets available here')
|
|
endif
|
|
let aligned = sort(s:align_lists(items(list)))
|
|
let colored = map(aligned, 's:yellow(v:val[0], 1)."\t".v:val[1]')
|
|
call s:fzf({
|
|
\ 'source': colored,
|
|
\ 'options': '--ansi +m -n 1 -d "\t"',
|
|
\ 'sink': function('s:inject_snippet')}, a:bang)
|
|
endfunction
|
|
|
|
command! -bang Snippets call s:snippets(<bang>0)
|
|
|
|
" ------------------------------------------------------------------
|
|
" Commands
|
|
" ------------------------------------------------------------------
|
|
let s:nbs = nr2char(0x2007)
|
|
|
|
function! s:format_cmd(line)
|
|
return substitute(a:line, '\C \([A-Z]\S*\) ',
|
|
\ '\=s:nbs.s:yellow(submatch(1), 1).s:nbs', '')
|
|
endfunction
|
|
|
|
function! s:command_sink(cmd)
|
|
let cmd = matchstr(a:cmd, '\C[A-Z]\S*\ze'.s:nbs)
|
|
call feedkeys(':'.cmd.(a:cmd[0] == '!' ? '' : ' '))
|
|
endfunction
|
|
|
|
function! s:commands(bang)
|
|
redir => cout
|
|
silent command
|
|
redir END
|
|
let list = split(cout, "\n")
|
|
call s:fzf({
|
|
\ 'source': extend(list[0:0], map(list[1:], 's:format_cmd(v:val)')),
|
|
\ 'sink': function('s:command_sink'),
|
|
\ 'options': '--ansi --header-lines 1 -x --prompt "Commands> " -n2 -d'.s:nbs}, a:bang)
|
|
endfunction
|
|
|
|
command! -bang Commands call s:commands(<bang>0)
|
|
|
|
" ----------------------------------------------------------------------------
|
|
" Completion helper
|
|
" ----------------------------------------------------------------------------
|
|
inoremap <silent> <Plug>(-fzf-complete-trigger) <c-o>:call <sid>complete_trigger()<cr>
|
|
|
|
function! s:pluck(dict, key, default)
|
|
return has_key(a:dict, a:key) ? remove(a:dict, a:key) : a:default
|
|
endfunction
|
|
|
|
function! s:complete_trigger()
|
|
let opts = copy(s:opts)
|
|
let opts.options = printf('+m -q %s %s', shellescape(s:query), get(opts, 'options', ''))
|
|
let opts['sink*'] = function('s:complete_insert')
|
|
let s:reducer = s:pluck(opts, 'reducer', function('s:first_line'))
|
|
call fzf#run(opts)
|
|
endfunction
|
|
|
|
" The default reducer
|
|
function! s:first_line(lines)
|
|
return a:lines[0]
|
|
endfunction
|
|
|
|
function! s:complete_insert(lines)
|
|
if empty(a:lines)
|
|
return
|
|
endif
|
|
|
|
let chars = strchars(s:query)
|
|
if chars == 0 | let del = ''
|
|
elseif chars == 1 | let del = '"_x'
|
|
else | let del = (chars - 1).'"_dvh'
|
|
endif
|
|
|
|
let data = call(s:reducer, [a:lines])
|
|
execute 'normal!' (s:eol ? '' : 'h').del.(s:eol ? 'a': 'i').data
|
|
if has('nvim')
|
|
call feedkeys('a')
|
|
else
|
|
execute "normal! \<esc>la"
|
|
endif
|
|
endfunction
|
|
|
|
let s:TYPE = {'dict': type({}), 'funcref': type(function('call'))}
|
|
|
|
function! s:eval(dict, key, arg)
|
|
if has_key(a:dict, a:key) && type(a:dict[a:key]) == s:TYPE.funcref
|
|
let ret = copy(a:dict)
|
|
let ret[a:key] = call(a:dict[a:key], [a:arg])
|
|
return ret
|
|
endif
|
|
return a:dict
|
|
endfunction
|
|
|
|
function! fzf#complete(...)
|
|
if a:0 == 0
|
|
let s:opts = copy(get(g:, 'fzf_window', s:default_window))
|
|
elseif type(a:1) == s:TYPE.dict
|
|
if has_key(a:1, 'sink') || has_key(a:1, 'sink*')
|
|
echoerr 'sink not allowed'
|
|
return ''
|
|
endif
|
|
let s:opts = copy(a:1)
|
|
else
|
|
let s:opts = extend({'source': a:1}, get(g:, 'fzf_window', s:default_window))
|
|
endif
|
|
|
|
let eol = col('$')
|
|
let ve = &ve
|
|
set ve=all
|
|
let s:eol = col('.') == eol
|
|
let &ve = ve
|
|
|
|
let prefix = s:pluck(s:opts, 'prefix', '\k*$')
|
|
let s:query = col('.') == 1 ? '' :
|
|
\ matchstr(getline('.')[0 : col('.')-2], prefix)
|
|
let s:opts = s:eval(s:opts, 'source', s:query)
|
|
let s:opts = s:eval(s:opts, 'options', s:query)
|
|
|
|
call feedkeys("\<Plug>(-fzf-complete-trigger)")
|
|
return ''
|
|
endfunction
|
|
|
|
" ------------------------------------------------------------------
|
|
let &cpo = s:cpo_save
|
|
unlet s:cpo_save
|
|
|