From a45cf80e034f8170ed2f5780f64c243b665491dd Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Sun, 12 May 2013 05:02:48 +0900 Subject: [PATCH] - Fixed for new interface. --- autoload/neocomplcache/sources/snippets_complete.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autoload/neocomplcache/sources/snippets_complete.vim b/autoload/neocomplcache/sources/snippets_complete.vim index ab4f76f..aec81c5 100644 --- a/autoload/neocomplcache/sources/snippets_complete.vim +++ b/autoload/neocomplcache/sources/snippets_complete.vim @@ -1,7 +1,7 @@ "============================================================================= " FILE: snippets_complete.vim " AUTHOR: Shougo Matsushita -" Last Modified: 30 Mar 2013. +" Last Modified: 12 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 @@ -30,6 +30,8 @@ set cpo&vim let s:source = { \ 'name' : 'snippets_complete', \ 'kind' : 'complfunc', + \ 'min_pattern_length' : + \ g:neocomplcache_auto_completion_start_length, \} function! s:source.initialize() "{{{