mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 04:00:05 +08:00
78 lines
2.6 KiB
VimL
Vendored
78 lines
2.6 KiB
VimL
Vendored
"=============================================================================
|
|
" FILE: interactive.vim
|
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu at gmail.com>
|
|
" License: MIT license
|
|
"=============================================================================
|
|
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
function! unite#sources#interactive#define() abort
|
|
return s:source
|
|
endfunction
|
|
|
|
let s:source = {
|
|
\ 'name' : 'interactive',
|
|
\ 'description' : 'candidates from unite sources by interactive',
|
|
\ 'action_table' : {},
|
|
\ 'default_action' : 'narrow',
|
|
\ 'is_listed' : 0,
|
|
\ 'hooks' : {},
|
|
\ 'syntax' : 'uniteSource__Interactive',
|
|
\}
|
|
|
|
function! s:source.hooks.on_syntax(args, context) abort "{{{
|
|
syntax match uniteSource__InteractiveDescriptionLine / -- .*$/
|
|
\ contained containedin=uniteSource__Interactive
|
|
syntax match uniteSource__InteractiveDescription /.*$/
|
|
\ contained containedin=uniteSource__InteractiveDescriptionLine
|
|
syntax match uniteSource__InteractiveMarker / -- /
|
|
\ contained containedin=uniteSource__InteractiveDescriptionLine
|
|
highlight default link uniteSource__InteractiveMarker Special
|
|
highlight default link uniteSource__InteractiveDescription Comment
|
|
endfunction"}}}
|
|
|
|
function! s:source.change_candidates(args, context) abort "{{{
|
|
let _ = []
|
|
if a:context.input !~ '\s'
|
|
let _ += map(filter(values(unite#init#_sources([], a:context.input)),
|
|
\ 'v:val.is_listed'), "{
|
|
\ 'word' : v:val.name,
|
|
\ 'abbr' : unite#util#truncate(v:val.name, 25) .
|
|
\ (v:val.description != '' ? ' -- ' . v:val.description : ''),
|
|
\ 'source__word' : v:val.name . ' ',
|
|
\ }")
|
|
if exists('g:unite_source_menu_menus')
|
|
" Add menu sources
|
|
let _ += values(map(copy(g:unite_source_menu_menus), "{
|
|
\ 'word' : 'menu:'.v:key,
|
|
\ 'abbr' : unite#util#truncate('menu:'.v:key, 25) .
|
|
\ (get(v:val, 'description') != '' ?
|
|
\ ' -- ' . v:val.description : ''),
|
|
\ 'source__word' : 'menu:' . v:key . ' ',
|
|
\ }"))
|
|
endif
|
|
else
|
|
let _ += map(unite#complete#source(a:context.input,
|
|
\ 'Unite ' . a:context.input, 0), "{
|
|
\ 'word' : v:val,
|
|
\ 'source__word' : v:val,
|
|
\ }")
|
|
endif
|
|
|
|
return _
|
|
endfunction"}}}
|
|
|
|
" Actions "{{{
|
|
let s:source.action_table.narrow = {
|
|
\ 'description' : 'narrow source',
|
|
\ 'is_quit' : 0,
|
|
\ }
|
|
function! s:source.action_table.narrow.func(candidate) abort "{{{
|
|
call unite#mappings#narrowing(a:candidate.source__word, 0)
|
|
endfunction"}}}
|
|
"}}}
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|