mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 15:50:04 +08:00
63 lines
1.7 KiB
VimL
63 lines
1.7 KiB
VimL
|
"=============================================================================
|
||
|
" FILE: launcher.vim
|
||
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||
|
" License: MIT license
|
||
|
"=============================================================================
|
||
|
|
||
|
let s:save_cpo = &cpo
|
||
|
set cpo&vim
|
||
|
|
||
|
" Variables "{{{
|
||
|
"}}}
|
||
|
|
||
|
function! unite#sources#launcher#define() abort "{{{
|
||
|
return s:source
|
||
|
endfunction"}}}
|
||
|
|
||
|
let s:source = {
|
||
|
\ 'name' : 'launcher',
|
||
|
\ 'description' : 'candidates from executable files',
|
||
|
\ 'default_kind' : 'guicmd',
|
||
|
\ 'converters' : 'converter_file_directory',
|
||
|
\ 'max_candidates' : 100,
|
||
|
\ }
|
||
|
|
||
|
let s:cached_result = {}
|
||
|
function! s:source.gather_candidates(args, context) abort "{{{
|
||
|
let path = get(a:args, 0, '')
|
||
|
if path == ''
|
||
|
" Use $PATH.
|
||
|
let path = substitute($PATH,
|
||
|
\ (unite#util#is_windows() ? ';' : ':'), ',', 'g')
|
||
|
endif
|
||
|
|
||
|
if !has_key(s:cached_result, path) || a:context.is_redraw
|
||
|
let s:cached_result[path] = map(
|
||
|
\ unite#sources#launcher#get_executables(path), "{
|
||
|
\ 'word' : v:val,
|
||
|
\ 'action__path' : v:val,
|
||
|
\ }")
|
||
|
endif
|
||
|
|
||
|
return s:cached_result[path]
|
||
|
endfunction"}}}
|
||
|
|
||
|
function! unite#sources#launcher#get_executables(path) abort "{{{
|
||
|
" Search executable files from $PATH.
|
||
|
let files = unite#util#uniq(split(globpath(a:path, '*'), '\n'))
|
||
|
|
||
|
if unite#util#is_windows()
|
||
|
let exts = escape(substitute($PATHEXT . ';.LNK', ';', '\\|', 'g'), '.')
|
||
|
let pattern = '"." . fnamemodify(v:val, ":e") =~? '.string(exts)
|
||
|
else
|
||
|
let pattern = 'executable(v:val)'
|
||
|
endif
|
||
|
|
||
|
return filter(files, pattern)
|
||
|
endfunction"}}}
|
||
|
|
||
|
let &cpo = s:save_cpo
|
||
|
unlet s:save_cpo
|
||
|
|
||
|
" vim: foldmethod=marker
|