- Fixed neocomplcache#sources#snippets_complete#force_expandable().

This commit is contained in:
Shougo Matsushita 2012-08-27 12:20:31 +09:00
parent 1367f60705
commit b45fc3a55f
2 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
"============================================================================= "=============================================================================
" FILE: snippets_complete.vim " FILE: snippets_complete.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com> " AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
" Last Modified: 02 Aug 2012. " Last Modified: 27 Aug 2012.
" License: MIT license {{{ " License: MIT license {{{
" Permission is hereby granted, free of charge, to any person obtaining " Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the " a copy of this software and associated documentation files (the
@ -254,6 +254,7 @@ function! neocomplcache#sources#snippets_complete#force_expandable()"{{{
" Found snippet trigger. " Found snippet trigger.
return s:get_cursor_keyword_snippet(snippets, cur_text) != '' return s:get_cursor_keyword_snippet(snippets, cur_text) != ''
\ || s:get_cursor_snippet(snippets, cur_text) != ''
endfunction"}}} endfunction"}}}
function! neocomplcache#sources#snippets_complete#jumpable()"{{{ function! neocomplcache#sources#snippets_complete#jumpable()"{{{
" Found snippet placeholder. " Found snippet placeholder.

View File

@ -309,6 +309,9 @@ snippet *neocomplcache-snippets-complete-unite-action-snippet*
============================================================================== ==============================================================================
CHANGELOG *neocomplcache-snippets-complete-changelog* CHANGELOG *neocomplcache-snippets-complete-changelog*
2012-08-27
- Fixed neocomplcache#sources#snippets_complete#force_expandable().
2012-08-02 2012-08-02
- Improved caching snippet files. - Improved caching snippet files.