- Fixed s:get_sources_filetypes() error.

This commit is contained in:
Shougo Matsushita 2013-02-16 23:03:22 +09:00
parent c6e175ef71
commit 47a1bfda12
2 changed files with 2 additions and 1 deletions

View File

@ -1050,7 +1050,7 @@ endfunction"}}}
function! s:get_sources_filetypes(filetype) "{{{
return (exists('*neocomplcache#get_source_filetypes') ?
\ neocomplcache#get_source_filetypes(a:filetype) :
\ [a:filetype]) + ['_']
\ [(a:filetype == '') ? 'nothing' : a:filetype]) + ['_']
endfunction"}}}
function! neosnippet#edit_complete(arglead, cmdline, cursorpos) "{{{

View File

@ -724,6 +724,7 @@ CHANGELOG *neosnippet-changelog*
- Added sh snippet.
- Added html snippet.
- Delete simple markers when InsertLeave.
- Fixed s:get_sources_filetypes() error.
2013-02-03
- Improved php snippets.