2012-02-02 04:33:35 +00:00
|
|
|
"=============================================================================
|
|
|
|
" FILE: snippets_complete.vim
|
2017-06-15 00:11:15 +00:00
|
|
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu at gmail.com>
|
2017-06-15 00:04:27 +00:00
|
|
|
" License: MIT license
|
2012-02-02 04:33:35 +00:00
|
|
|
"=============================================================================
|
|
|
|
|
|
|
|
let s:source = {
|
|
|
|
\ 'name' : 'snippets_complete',
|
2012-09-30 09:22:30 +00:00
|
|
|
\ 'kind' : 'complfunc',
|
2013-05-11 20:02:48 +00:00
|
|
|
\ 'min_pattern_length' :
|
|
|
|
\ g:neocomplcache_auto_completion_start_length,
|
2012-02-02 04:33:35 +00:00
|
|
|
\}
|
|
|
|
|
2017-10-01 13:40:17 +00:00
|
|
|
function! s:source.initialize() abort
|
2012-02-02 04:33:35 +00:00
|
|
|
" Initialize.
|
|
|
|
call neocomplcache#set_dictionary_helper(
|
2012-02-05 01:24:59 +00:00
|
|
|
\ g:neocomplcache_source_rank, 'snippets_complete', 8)
|
2012-09-30 09:22:30 +00:00
|
|
|
call neocomplcache#set_completion_length('snippets_complete',
|
|
|
|
\ g:neocomplcache_auto_completion_start_length)
|
2017-10-01 13:40:17 +00:00
|
|
|
endfunction
|
2012-02-02 04:33:35 +00:00
|
|
|
|
2017-10-01 13:40:17 +00:00
|
|
|
function! s:source.get_keyword_pos(cur_text) abort
|
2012-10-21 09:03:10 +00:00
|
|
|
let cur_word = matchstr(a:cur_text, '\w\+$')
|
|
|
|
let word_candidates = neocomplcache#keyword_filter(
|
2013-11-21 09:40:40 +00:00
|
|
|
\ filter(values(neosnippet#helpers#get_snippets()),
|
2012-10-21 09:03:10 +00:00
|
|
|
\ 'v:val.options.word'), cur_word)
|
|
|
|
if !empty(word_candidates)
|
|
|
|
return match(a:cur_text, '\w\+$')
|
|
|
|
endif
|
|
|
|
|
2012-09-30 09:22:30 +00:00
|
|
|
return match(a:cur_text, '\S\+$')
|
2017-10-01 13:40:17 +00:00
|
|
|
endfunction
|
2012-09-30 09:22:30 +00:00
|
|
|
|
2017-10-01 13:40:17 +00:00
|
|
|
function! s:source.get_complete_words(cur_keyword_pos, cur_keyword_str) abort
|
2013-11-21 09:40:40 +00:00
|
|
|
let list = s:keyword_filter(neosnippet#helpers#get_snippets(), a:cur_keyword_str)
|
2012-02-02 04:33:35 +00:00
|
|
|
|
|
|
|
for snippet in list
|
2012-11-02 02:44:35 +00:00
|
|
|
let snippet.dup = 1
|
2012-11-04 11:47:54 +00:00
|
|
|
|
2013-03-02 09:31:05 +00:00
|
|
|
let snippet.menu = neosnippet#util#strwidthpart(
|
2013-03-02 09:27:24 +00:00
|
|
|
\ snippet.menu_template, winwidth(0)/3)
|
2012-02-02 04:33:35 +00:00
|
|
|
endfor
|
|
|
|
|
|
|
|
return list
|
2017-10-01 13:40:17 +00:00
|
|
|
endfunction
|
2012-02-02 04:33:35 +00:00
|
|
|
|
2017-10-01 13:40:17 +00:00
|
|
|
function! s:keyword_filter(snippets, cur_keyword_str) abort
|
2012-10-28 10:15:58 +00:00
|
|
|
" Uniq by real_name.
|
|
|
|
let dict = {}
|
2012-11-02 05:39:23 +00:00
|
|
|
|
2012-11-04 11:47:54 +00:00
|
|
|
" Use default filter.
|
|
|
|
let list = neocomplcache#keyword_filter(
|
|
|
|
\ values(a:snippets), a:cur_keyword_str)
|
|
|
|
|
2012-10-28 10:15:58 +00:00
|
|
|
" Add cur_keyword_str snippet.
|
|
|
|
if has_key(a:snippets, a:cur_keyword_str)
|
|
|
|
call add(list, a:snippets[a:cur_keyword_str])
|
|
|
|
endif
|
|
|
|
|
|
|
|
for snippet in neocomplcache#dup_filter(list)
|
|
|
|
if !has_key(dict, snippet.real_name) ||
|
|
|
|
\ len(dict[snippet.real_name].word) > len(snippet.word)
|
|
|
|
let dict[snippet.real_name] = snippet
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return values(dict)
|
2017-10-01 13:40:17 +00:00
|
|
|
endfunction
|
2012-10-28 10:15:58 +00:00
|
|
|
|
2017-10-01 13:40:17 +00:00
|
|
|
function! neocomplcache#sources#snippets_complete#define() abort
|
2012-09-27 15:42:34 +00:00
|
|
|
return s:source
|
2017-10-01 13:40:17 +00:00
|
|
|
endfunction
|