spacevim/bundle/unite.vim/autoload/unite/sources/script.vim
JIe 2bb7059579
Some checks failed
Detach Plugins / check (FlyGrep.vim) (push) Has been cancelled
Detach Plugins / check (GitHub.vim) (push) Has been cancelled
Detach Plugins / check (JavaUnit.vim) (push) Has been cancelled
Detach Plugins / check (SourceCounter.vim) (push) Has been cancelled
Detach Plugins / check (cpicker.nvim) (push) Has been cancelled
Detach Plugins / check (dein-ui.vim) (push) Has been cancelled
Detach Plugins / check (git.vim) (push) Has been cancelled
Detach Plugins / check (iedit.vim) (push) Has been cancelled
Detach Plugins / check (scrollbar.vim) (push) Has been cancelled
Detach Plugins / check (vim-chat) (push) Has been cancelled
Detach Plugins / check (vim-cheat) (push) Has been cancelled
Detach Plugins / check (vim-todo) (push) Has been cancelled
Detach Plugins / check (xmake.vim) (push) Has been cancelled
test / Linux (nvim, nightly) (push) Has been cancelled
test / Linux (nvim, v0.3.8) (push) Has been cancelled
test / Linux (nvim, v0.4.0) (push) Has been cancelled
test / Linux (nvim, v0.4.2) (push) Has been cancelled
test / Linux (nvim, v0.4.3) (push) Has been cancelled
test / Linux (nvim, v0.4.4) (push) Has been cancelled
test / Linux (nvim, v0.5.0) (push) Has been cancelled
test / Linux (nvim, v0.5.1) (push) Has been cancelled
test / Linux (nvim, v0.6.0) (push) Has been cancelled
test / Linux (nvim, v0.6.1) (push) Has been cancelled
test / Linux (nvim, v0.7.0) (push) Has been cancelled
test / Linux (nvim, v0.7.2) (push) Has been cancelled
test / Linux (nvim, v0.8.0) (push) Has been cancelled
test / Linux (nvim, v0.8.1) (push) Has been cancelled
test / Linux (nvim, v0.8.2) (push) Has been cancelled
test / Linux (nvim, v0.8.3) (push) Has been cancelled
test / Linux (nvim, v0.9.0) (push) Has been cancelled
test / Linux (nvim, v0.9.1) (push) Has been cancelled
test / Linux (true, vim, v7.4.052) (push) Has been cancelled
test / Linux (true, vim, v7.4.1689) (push) Has been cancelled
test / Linux (true, vim, v7.4.629) (push) Has been cancelled
test / Linux (true, vim, v8.0.0027) (push) Has been cancelled
test / Linux (true, vim, v8.0.0183) (push) Has been cancelled
test / Linux (vim, nightly) (push) Has been cancelled
test / Linux (vim, v8.0.0184) (push) Has been cancelled
test / Linux (vim, v8.0.1453) (push) Has been cancelled
test / Linux (vim, v8.1.2269) (push) Has been cancelled
test / Linux (vim, v8.2.2434) (push) Has been cancelled
test / Linux (vim, v8.2.3995) (push) Has been cancelled
test / Windows (nvim, nightly) (push) Has been cancelled
test / Windows (nvim, v0.3.8) (push) Has been cancelled
test / Windows (nvim, v0.4.2) (push) Has been cancelled
test / Windows (nvim, v0.4.3) (push) Has been cancelled
test / Windows (nvim, v0.4.4) (push) Has been cancelled
test / Windows (nvim, v0.5.0) (push) Has been cancelled
test / Windows (nvim, v0.5.1) (push) Has been cancelled
test / Windows (nvim, v0.6.0) (push) Has been cancelled
test / Windows (nvim, v0.6.1) (push) Has been cancelled
test / Windows (nvim, v0.7.0) (push) Has been cancelled
test / Windows (nvim, v0.7.2) (push) Has been cancelled
test / Windows (nvim, v0.8.0) (push) Has been cancelled
test / Windows (nvim, v0.8.1) (push) Has been cancelled
test / Windows (nvim, v0.8.2) (push) Has been cancelled
test / Windows (nvim, v0.8.3) (push) Has been cancelled
test / Windows (nvim, v0.9.0) (push) Has been cancelled
test / Windows (nvim, v0.9.1) (push) Has been cancelled
test / Windows (vim, nightly) (push) Has been cancelled
test / Windows (vim, v7.4.1185) (push) Has been cancelled
test / Windows (vim, v7.4.1689) (push) Has been cancelled
test / Windows (vim, v8.0.0027) (push) Has been cancelled
test / Windows (vim, v8.0.1453) (push) Has been cancelled
test / Windows (vim, v8.1.2269) (push) Has been cancelled
test / Windows (vim, v8.2.2434) (push) Has been cancelled
test / Windows (vim, v8.2.3995) (push) Has been cancelled
docker / docker (push) Has been cancelled
mirror / check (coding) (push) Has been cancelled
mirror / check (gitee) (push) Has been cancelled
mirror / check (gitlab) (push) Has been cancelled
init
2024-08-21 14:17:26 +08:00

125 lines
3.5 KiB
VimL

"=============================================================================
" FILE: script.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu at gmail.com>
" hakobe <hakobe at gmail.com>
" License: MIT license
"=============================================================================
" see http://d.hatena.ne.jp/hakobe932
let s:source = {
\ 'name': 'script',
\ 'hooks': {},
\ 'default_kind' : 'command',
\ }
function! s:source.hooks.on_init(args, context) abort "{{{
let a:context.source__path = expand('%')
endfunction"}}}
function! s:source.hooks.on_close(args, context) abort "{{{
if has_key(a:context, 'source__proc')
call a:context.source__proc.kill()
endif
endfunction "}}}
function! s:source.gather_candidates(args, context) abort "{{{
if len(a:args) < 2
call unite#print_source_error(
\ ':Unite script:command:path', s:source.name)
let a:context.is_async = 0
return []
endif
let runner = a:args[0]
let script = globpath(&runtimepath, a:args[1], 1)
if script == ''
let script = a:args[1]
endif
if !executable(runner)
call unite#print_source_error(
\ 'command is not executable: ' . runner, s:source.name)
let a:context.is_async = 0
return []
elseif !filereadable(script)
call unite#print_source_error(
\ 'script file is not readable: ' . script, s:source.name)
let a:context.is_async = 0
return []
endif
let cmdline = printf('%s "%s" "%s"',
\ runner, script, a:context.source__path)
if !unite#util#has_vimproc()
let a:context.is_async = 0
let lines = split(unite#util#system(cmdline), "\n")
return map(lines, 's:create_candidate(v:val)')
end
" Use vimproc
let a:context.source__proc = vimproc#plineopen3(
\ vimproc#util#iconv(cmdline, &encoding, 'char'))
return []
endfunction"}}}
function! s:source.async_gather_candidates(args, context) abort "{{{
if !has_key(a:context, 'source__proc')
let a:context.is_async = 0
return []
endif
let stderr = a:context.source__proc.stderr
if !stderr.eof
" Print error.
let errors = filter(unite#util#read_lines(stderr, 200),
\ "v:val !~ '^\\s*$'")
if !empty(errors)
call unite#print_source_error(errors, s:source.name)
endif
endif
let stdout = a:context.source__proc.stdout
if stdout.eof
" Disable async.
let a:context.is_async = 0
call a:context.source__proc.waitpid()
endif
return map(unite#util#read_lines(stdout, 1000),
\ "s:create_candidate(unite#util#iconv(
\ v:val, 'char', &encoding))")
endfunction"}}}
function! s:source.complete(args, context, arglead, cmdline, cursorpos) abort "{{{
if len(a:args) < 1
let path = substitute($PATH,
\ (unite#util#is_windows() ? ';' : ':'), ',', 'g')
return filter(map(unite#sources#launcher#get_executables(path),
\ "fnamemodify(v:val, ':t')"), "stridx(v:val, a:arglead) == 0")
elseif len(a:args) == 2
return unite#sources#file#complete_file(
\ a:args, a:context, split(a:arglead, ':')[1], a:cmdline, a:cursorpos)
else
return []
endif
endfunction"}}}
function! s:create_candidate(val) abort "{{{
let matches = matchlist(a:val, '^\(.*\)\t\(.*\)$')
if empty(matches)
return { 'word' : 'none', 'is_dummy' : 1 }
endif
return {
\ 'word' : matches[1],
\ 'action__command' : matches[2]
\ }
endfunction"}}}
function! unite#sources#script#define() abort
return s:source
endfunction
" vim: foldmethod=marker