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

130 lines
4.3 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-09-30 08:45:41 +00:00
" Last Modified: 30 Sep 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' : 'plugin',
\}
function! s:source.initialize()"{{{
" Initialize.
call neocomplcache#set_dictionary_helper(
2012-02-05 01:24:59 +00:00
\ g:neocomplcache_source_rank, 'snippets_complete', 8)
2012-02-02 04:33:35 +00:00
endfunction"}}}
function! s:source.finalize()"{{{
delcommand NeoComplCacheEditSnippets
delcommand NeoComplCacheEditRuntimeSnippets
delcommand NeoComplCacheCachingSnippets
hi clear NeoComplCacheExpandSnippets
if neocomplcache#exists_echodoc()
call echodoc#unregister('snippets_complete')
endif
endfunction"}}}
function! s:source.get_keyword_list(cur_keyword_str)"{{{
2012-09-27 15:42:34 +00:00
let all_snippets = neosnippet#get_snippets()
2012-02-02 04:33:35 +00:00
2012-09-30 08:45:41 +00:00
for filetype in neocomplcache#get_source_filetypes(
\ neosnippet#get_filetype())
2012-09-30 09:04:48 +00:00
if !has_key(all_snippets, filetype)
2012-09-30 08:45:41 +00:00
" Caching snippets.
call neosnippet#caching_snippets(filetype)
endif
endfor
2012-02-02 04:33:35 +00:00
2012-09-27 15:42:34 +00:00
return s:keyword_filter(neocomplcache#dup_filter(
\ values(all_snippets)), a:cur_keyword_str)
2012-02-02 04:33:35 +00:00
endfunction"}}}
function! s:keyword_filter(list, cur_keyword_str)"{{{
let keyword_escape = neocomplcache#keyword_escape(a:cur_keyword_str)
let prev_word = neocomplcache#get_prev_word(a:cur_keyword_str)
" Keyword filter.
2012-09-27 15:42:34 +00:00
let pattern = printf('v:val.word =~ %s &&'.
\ '(!has_key(v:val, "prev_word") || v:val.prev_word == %s)',
\ string('^' . keyword_escape), string(prev_word))
2012-02-02 04:33:35 +00:00
let list = filter(a:list, pattern)
" 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
if snippet.snip =~ '\\\@<!`=.*\\\@<!`'
let snippet.menu = s:eval_snippet(snippet.snip)
if g:neocomplcache_max_keyword_width >= 0 &&
\ len(snippet.menu) > g:neocomplcache_max_keyword_width
2012-03-14 00:35:41 +00:00
let snippet.menu = printf(abbr_pattern,
\ snippet.menu, snippet.menu[-8:])
2012-02-02 04:33:35 +00:00
endif
let snippet.menu = '`Snip` ' . snippet.menu
endif
let snippet.neocomplcache__convertable = 0
2012-02-02 04:33:35 +00:00
endfor
return list
endfunction"}}}
2012-09-27 15:42:34 +00:00
function! neocomplcache#sources#snippets_complete#define()"{{{
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-09-27 15:42:34 +00:00
function! neocomplcache#sources#snippets_complete#expandable()"{{{
return neosnippet#expandable()
2012-02-02 04:33:35 +00:00
endfunction"}}}
function! neocomplcache#sources#snippets_complete#force_expandable()"{{{
2012-09-27 15:42:34 +00:00
return neosnippet#expandable()
endfunction"}}}
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"}}}
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"}}}
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