neosnippet.vim/autoload/neocomplcache/sources/snippets_complete.vim

144 lines
4.6 KiB
VimL
Raw Normal View History

2012-02-02 04:33:35 +00:00
"=============================================================================
" FILE: snippets_complete.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
2012-11-10 01:47:14 +00:00
" Last Modified: 10 Nov 2012.
2012-02-02 04:33:35 +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
let s:source = {
\ 'name' : 'snippets_complete',
\ 'kind' : 'complfunc',
2012-02-02 04:33:35 +00:00
\}
2012-12-13 08:34:20 +00:00
function! s:source.initialize() "{{{
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)
call neocomplcache#set_completion_length('snippets_complete',
\ g:neocomplcache_auto_completion_start_length)
2012-02-02 04:33:35 +00:00
endfunction"}}}
2012-12-13 08:34:20 +00:00
function! s:source.get_keyword_pos(cur_text) "{{{
2012-10-21 09:03:10 +00:00
let cur_word = matchstr(a:cur_text, '\w\+$')
let word_candidates = neocomplcache#keyword_filter(
\ filter(values(neosnippet#get_snippets()),
\ 'v:val.options.word'), cur_word)
if !empty(word_candidates)
return match(a:cur_text, '\w\+$')
endif
return match(a:cur_text, '\S\+$')
endfunction"}}}
2012-12-13 08:34:20 +00:00
function! s:source.get_complete_words(cur_keyword_pos, cur_keyword_str) "{{{
2012-10-28 10:15:58 +00:00
let list = s:keyword_filter(neosnippet#get_snippets(), a:cur_keyword_str)
2012-02-02 04:33:35 +00:00
" Substitute abbr.
2012-03-14 00:35:41 +00:00
let abbr_pattern = printf('%%.%ds..%%s',
\ g:neocomplcache_max_keyword_width-10)
2012-02-02 04:33:35 +00:00
for snippet in list
2012-11-02 02:44:35 +00:00
let snippet.dup = 1
let snippet.neocomplcache__convertable = 0
2012-11-04 11:47:54 +00:00
let snippet.kind = get(snippet,
\ 'neocomplcache__refresh', 0) ? '~' : ''
2012-02-02 04:33:35 +00:00
endfor
return list
endfunction"}}}
2012-12-13 08:34:20 +00:00
function! s:keyword_filter(snippets, cur_keyword_str) "{{{
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)
for snippet in list
" reset refresh flag.
let snippet.neocomplcache__refresh = 0
2012-11-08 23:47:12 +00:00
let snippet.rank = 5
2012-11-04 11:47:54 +00:00
endfor
2012-11-02 12:11:35 +00:00
if len(a:cur_keyword_str) > 1 && a:cur_keyword_str =~ '^\h\w*$'
2012-11-02 05:57:17 +00:00
" Use partial match by filter_str.
2012-11-04 11:47:54 +00:00
let partial_list = filter(values(a:snippets),
\ printf('stridx(v:val.filter_str, %s) > 0',
2012-11-02 06:08:20 +00:00
\ string(a:cur_keyword_str)))
2012-11-04 11:47:54 +00:00
for snippet in partial_list
" Set refresh flag.
let snippet.neocomplcache__refresh = 1
2012-11-08 23:47:12 +00:00
let snippet.rank = 0
2012-11-04 11:47:54 +00:00
endfor
let list += partial_list
2012-11-02 05:39:23 +00:00
endif
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)
endfunction"}}}
2012-02-02 04:33:35 +00:00
2012-12-13 08:34:20 +00:00
function! neocomplcache#sources#snippets_complete#define() "{{{
2012-09-27 15:42:34 +00:00
return s:source
endfunction"}}}
2012-02-02 04:33:35 +00:00
2012-09-27 15:42:34 +00:00
function! s:compare_words(i1, i2)
return a:i1.menu - a:i2.menu
endfunction
2012-02-02 04:33:35 +00:00
2012-12-13 08:34:20 +00:00
function! neocomplcache#sources#snippets_complete#expandable() "{{{
2012-09-27 15:42:34 +00:00
return neosnippet#expandable()
2012-02-02 04:33:35 +00:00
endfunction"}}}
2012-12-13 08:34:20 +00:00
function! neocomplcache#sources#snippets_complete#force_expandable() "{{{
2012-09-27 15:42:34 +00:00
return neosnippet#expandable()
endfunction"}}}
2012-12-13 08:34:20 +00:00
function! neocomplcache#sources#snippets_complete#jumpable() "{{{
2012-09-27 15:42:34 +00:00
return neosnippet#jumpable()
2012-02-02 04:33:35 +00:00
endfunction"}}}
2012-12-13 08:34:20 +00:00
function! neocomplcache#sources#snippets_complete#get_snippets() "{{{
2012-09-27 15:42:34 +00:00
return neosnippet#get_snippets()
2012-02-02 04:33:35 +00:00
endfunction"}}}
2012-12-13 08:34:20 +00:00
function! neocomplcache#sources#snippets_complete#get_snippets_dir() "{{{
2012-09-30 09:13:49 +00:00
return neosnippet#get_snippets_directory()
2012-03-13 23:49:57 +00:00
endfunction"}}}
2012-02-02 04:33:35 +00:00
let &cpo = s:save_cpo
unlet s:save_cpo
" vim: foldmethod=marker