neosnippet.vim/autoload/unite/sources/snippet.vim

175 lines
5.2 KiB
VimL
Raw Normal View History

2012-03-06 23:19:01 +00:00
"=============================================================================
" FILE: snippet.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
2013-11-21 09:40:40 +00:00
" Last Modified: 21 Nov 2013.
2012-03-06 23:19:01 +00:00
" License: 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:save_cpo = &cpo
set cpo&vim
function! unite#sources#snippet#define() "{{{
let kind = {
\ 'name' : 'snippet',
\ 'default_action' : 'expand',
\ 'action_table': {},
\ 'parents': ['jump_list', 'completion'],
\ 'alias_table' : { 'edit' : 'open' },
\ }
call unite#define_kind(kind)
return s:source
endfunction "}}}
2012-09-30 14:16:26 +00:00
" neosnippet source.
2012-03-06 23:19:01 +00:00
let s:source = {
\ 'name': 'snippet',
\ 'hooks' : {},
\ 'action_table' : {},
\ }
function! s:source.hooks.on_init(args, context) "{{{
2012-03-06 23:39:08 +00:00
let a:context.source__cur_keyword_pos =
2012-09-30 14:16:26 +00:00
\ s:get_keyword_pos(neosnippet#util#get_cur_text())
2012-03-06 23:39:08 +00:00
let a:context.source__snippets =
2013-11-21 09:40:40 +00:00
\ sort(values(neosnippet#helpers#get_snippets()))
2012-03-06 23:19:01 +00:00
endfunction"}}}
function! s:source.gather_candidates(args, context) "{{{
let keyword_pos = a:context.source__cur_keyword_pos
let list = []
for keyword in a:context.source__snippets
let dict = {
2012-12-13 07:52:58 +00:00
\ 'word' : keyword.word,
2013-03-05 13:54:52 +00:00
\ 'abbr' : printf('%-50s %s', keyword.word, keyword.menu_abbr),
2012-03-06 23:19:01 +00:00
\ 'kind': 'snippet',
\ 'action__complete_word' : keyword.word,
\ 'action__complete_pos' : keyword_pos,
\ 'action__path' : keyword.action__path,
\ 'action__pattern' : keyword.action__pattern,
2013-03-05 13:54:52 +00:00
\ 'source__menu' : keyword.menu_abbr,
2012-03-06 23:19:01 +00:00
\ 'source__snip' : keyword.snip,
2012-10-18 02:57:09 +00:00
\ 'source__snip_ref' : keyword,
2012-03-06 23:19:01 +00:00
\ }
call add(list, dict)
endfor
return list
endfunction "}}}
2012-12-13 08:34:20 +00:00
" Actions "{{{
2012-03-06 23:19:01 +00:00
let s:action_table = {}
let s:action_table.expand = {
\ 'description' : 'expand snippet',
\ }
2012-12-13 08:34:20 +00:00
function! s:action_table.expand.func(candidate) "{{{
2012-09-30 14:16:26 +00:00
let cur_text = neosnippet#util#get_cur_text()
let cur_keyword_str = matchstr(cur_text, '\S\+$')
2012-03-06 23:19:01 +00:00
let context = unite#get_context()
2012-09-30 14:16:26 +00:00
call neosnippet#expand(
2012-03-07 01:05:00 +00:00
\ cur_text . a:candidate.action__complete_word[len(cur_keyword_str)],
\ context.col, a:candidate.action__complete_word)
2012-03-06 23:19:01 +00:00
endfunction"}}}
let s:action_table.preview = {
\ 'description' : 'preview snippet',
\ 'is_selectable' : 1,
\ 'is_quit' : 0,
\ }
2012-12-13 08:34:20 +00:00
function! s:action_table.preview.func(candidates) "{{{
2012-03-06 23:19:01 +00:00
for snip in a:candidates
echohl String
echo snip.action__complete_word
echohl None
echo snip.source__snip
echo ' '
endfor
endfunction"}}}
let s:action_table.unite__new_candidate = {
\ 'description' : 'add new snippet',
\ 'is_quit' : 1,
\ }
2012-12-13 08:34:20 +00:00
function! s:action_table.unite__new_candidate.func(candidate) "{{{
let trigger = unite#util#input('Please input snippet trigger: ')
if trigger == ''
echo 'Canceled.'
return
endif
call unite#take_action('open', a:candidate)
if &filetype != 'snippet'
" Open failed.
return
endif
if getline('$') != ''
" Append line.
call append('$', '')
endif
2012-10-21 12:13:26 +00:00
call append('$', [
\ 'snippet ' . trigger,
\ 'abbr ' . trigger,
\ 'options head',
\ ' '
\ ])
call cursor(line('$'), 0)
call cursor(0, col('$'))
endfunction"}}}
2012-10-18 02:57:09 +00:00
let s:source.action_table = s:action_table
2012-03-06 23:19:01 +00:00
unlet! s:action_table
"}}}
function! unite#sources#snippet#start_complete() "{{{
2012-10-14 23:39:34 +00:00
if !exists(':Unite')
call neosnippet#util#print_error(
\ 'unite.vim is not installed.')
call neosnippet#util#print_error(
\ 'Please install unite.vim Ver.1.5 or above.')
return ''
endif
2012-03-07 01:05:00 +00:00
return unite#start_complete(['snippet'],
2012-12-13 07:52:58 +00:00
\ { 'input': neosnippet#util#get_cur_text(), 'buffer_name' : '' })
2012-03-06 23:19:01 +00:00
endfunction "}}}
2012-12-13 08:34:20 +00:00
function! s:get_keyword_pos(cur_text) "{{{
2012-09-30 14:16:26 +00:00
let cur_keyword_pos = match(a:cur_text, '\S\+$')
2012-03-06 23:19:01 +00:00
if cur_keyword_pos < 0
" Empty string.
return len(a:cur_text)
endif
return cur_keyword_pos
endfunction"}}}
let &cpo = s:save_cpo
unlet s:save_cpo
" vim: foldmethod=marker