- Added neocomplete source.

This commit is contained in:
Shougo Matsushita
2013-05-28 16:49:21 +09:00
parent e91c6af2bb
commit c6e5ea77e1
2 changed files with 72 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
"=============================================================================
" FILE: snippets_complete.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
" Last Modified: 20 May 2013.
" Last Modified: 28 May 2013.
" License: MIT license {{{
" Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the
@@ -61,7 +61,6 @@ function! s:source.get_complete_words(cur_keyword_pos, cur_keyword_str) "{{{
for snippet in list
let snippet.dup = 1
let snippet.neocomplcache__convertable = 0
let snippet.kind = get(snippet,
\ 'neocomplcache__refresh', 0) ? '~' : ''
@@ -89,21 +88,6 @@ function! s:keyword_filter(snippets, cur_keyword_str) "{{{
\ 'snippets_complete', 8)
endfor
" Note: Disabled partial match for perfomance issues.
" if len(a:cur_keyword_str) > 1 && a:cur_keyword_str =~ '^\h\w*$'
" " Use partial match by word.
" let partial_list = filter(values(a:snippets),
" \ printf('stridx(v:val.word, %s) > 0',
" \ string(a:cur_keyword_str)))
" for snippet in partial_list
" " Set refresh flag.
" let snippet.neocomplcache__refresh = 1
" let snippet.rank = 0
" endfor
"
" let list += partial_list
" endif
" Add cur_keyword_str snippet.
if has_key(a:snippets, a:cur_keyword_str)
call add(list, a:snippets[a:cur_keyword_str])