From eed6af62f05d77be58cafafe9e0af707337f7518 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Wed, 5 Sep 2012 17:03:56 +0900 Subject: [PATCH] - Added neocomplcache__convertable attribute. --- autoload/neocomplcache/sources/snippets_complete.vim | 4 +++- doc/neocomplcache-snippets-complete.txt | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/autoload/neocomplcache/sources/snippets_complete.vim b/autoload/neocomplcache/sources/snippets_complete.vim index b15a4db..57e0fcf 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: 27 Aug 2012. +" Last Modified: 05 Sep 2012. " License: MIT license {{{ " Permission is hereby granted, free of charge, to any person obtaining " a copy of this software and associated documentation files (the @@ -230,6 +230,8 @@ function! s:keyword_filter(list, cur_keyword_str)"{{{ endif let snippet.menu = '`Snip` ' . snippet.menu endif + + let snippet.neocomplcache__convertable = 0 endfor return list diff --git a/doc/neocomplcache-snippets-complete.txt b/doc/neocomplcache-snippets-complete.txt index 681941c..6740980 100644 --- a/doc/neocomplcache-snippets-complete.txt +++ b/doc/neocomplcache-snippets-complete.txt @@ -309,6 +309,9 @@ snippet *neocomplcache-snippets-complete-unite-action-snippet* ============================================================================== CHANGELOG *neocomplcache-snippets-complete-changelog* +2012-09-06 +- Added neocomplcache__convertable attribute. + 2012-08-27 - Fixed neocomplcache#sources#snippets_complete#force_expandable().