Fix c snippets expanded in cpp filetype

This commit is contained in:
Naoki Mizuno 2017-08-12 21:36:44 +09:00
parent 4bf88a9e49
commit e01a166c4e
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ function! s:get_sources_filetypes(filetype) abort "{{{
\ exists('*context_filetype#get_filetypes') ? \ exists('*context_filetype#get_filetypes') ?
\ context_filetype#get_filetypes(a:filetype) : \ context_filetype#get_filetypes(a:filetype) :
\ split(((a:filetype == '') ? 'nothing' : a:filetype), '\.') \ split(((a:filetype == '') ? 'nothing' : a:filetype), '\.')
return neosnippet#util#uniq(['_', a:filetype] + filetypes) return neosnippet#util#uniq(['_'] + filetypes + [a:filetype])
endfunction"}}} endfunction"}}}
" vim: foldmethod=marker " vim: foldmethod=marker